I search online for the solution, but nothing :(.
I write this simple rule
RewriteRule ^(.*)$ http://www.mysite.com/$1 [P,NE,QSA,L]
In mysite.it i have an .htaccess with this rule and it's ok, but if i have a link
"http://www.mysite.it/public/file name.html"
the server point to "http://www.mysite.it/public/file"
I try many solution but i can't solve.
I try this and many shades of...
RewriteRule ^(.*)(%20)(.*)$ "http://www.mysite.com/$1$3" [P,NE,QSA,L]
Thanks!
RewriteRule ^(.*)$ "http://www.mysite.com/$1 [NE,QSA,L]"work? If so, there's an issue with mod_proxy not mod_rewrite. – Chris Lear Jun 03 '14 at 08:16