Forum Moderators: phranque
The distinction between URLs and filepaths is critical to understanding URL rewriting and/or redirection.
For more information, see the documents cited in our forum charter [webmasterworld.com] and the tutorials in the Apache forum section of the WebmasterWorld library [webmasterworld.com].
Jim
http://example.com/bus.htm
and want to change it to
http://example.com/bus.html
I have about a 1000 different pages. I want to retain each pages original name and just change the extension. I am not redirecting a page to a different page. Does this help?
RewriteRule ^{.*}\.html$ /$1.htm [L]
Jim