Hello all
Little question with .htaccess rewrite rule.. I want to redirect http request like that :
http://domain.com/~something/blabla/blablabla?blabla=blabla
as an request like that :
h ttp://domain.com/blabla/blablabla?blabla=blabla
Simply remove the ~something (with can be anything else but with an ~ at beginning...)
I have tried this code but not working at all... :
RewriteEngine on
RewriteRule ~something/(.*) $1 [P,L]
Thanks a lot :)
Olivier