Forum Moderators: phranque
I have searched internet maniac of time to find what i am seeking of, this is how i found how to fix canonical issues, URL redirection,
right now i want to redirect one URL through .htaccess file, but couldn't do..
Please suggest me the code:
http://www.example.com/123/index.htm >> change to >>
http://www.example.com/123/
I want to remove the index.htm portion by redirection, my site is under apache server, please help me get the right code for it..
H.Gupta
----------
[edited by: jdMorgan at 2:57 pm (utc) on Jan. 4, 2007]
[edit reason] No specifics, please. See Terms of Service. [/edit]
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /([^/]+/)*index\.htm\ HTTP/
RewriteRule ^(([^/]+/)*)index\.htm$ http://www.example.com/$1 [R=301,L]
Jim