arndale65
asked on
Mod_Rewrite help for a noob please
I want to rewrite all URLs of the form:
http://www.site.com/push20/dir1/dir2/afile.html
to
http://www.site.com/dir1/dir2/afile.html
I.e. lose the 'push20' bit
Ive tried with:
but its not happening....
Suggestion please!
http://www.site.com/push20/dir1/dir2/afile.html
to
http://www.site.com/dir1/dir2/afile.html
I.e. lose the 'push20' bit
Ive tried with:
RewriteEngine On
RewriteRule ^push20/(.*) /$1 [R]
but its not happening....
Suggestion please!
ASKER
httpd.conf
ASKER CERTIFIED SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
ASKER
That's it! - thanks a million
Have You put that in .htaccess or apache config file?