On 5/30/07, Vinko Vrsalovic <[EMAIL PROTECTED]> wrote:
On 5/30/07, Joshua Slive <[EMAIL PROTECTED]> wrote: > > Didn't know that... but I did a quick test: > > > > RewriteRule /path/[^/]+ http://google.com > > > > and when accessing http://localhost/path/dsa(@@) drove me to google. So I > > think it's not *that* messed up. > > The problem is extra escaping that occurs on the substitution string. So try > RewriteRule /path/([^/]+) http://google.com/?q=$1 Google tells me: The requested URL /?q=dsa(@@) was not found on this server. Address bar shows http://www.google.com/?q=dsa(@@)
Perhaps @ is a safe character in this context. For details of the problem, see: http://mail-archives.apache.org/mod_mbox/httpd-dev/200705.mbox/[EMAIL PROTECTED] Joshua. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
