Forum Moderators: phranque
/index.html
to
/this-other-page.html
Both in same site and directory.
But when I use the following .htaccess file nothing happens:
-----------------------------
RewriteEngine on
RewriteBase /index.html
RewriteRule ^/index.html(.+) [mydomain.com...] [L,R=301]
-----------------------------
I am dropping the .htaccess right at the root of the domain.
I have searched for answers in other threads to no avail. Perhaps someone can help clarify what should I change. Thanks.
RewriteEngine on
RewriteBase /
RewriteRule ^index\.html?$ http://www.mydomain.com/this-other-page.html [L,R=301]
I suggest you to take a look in the mod_rewrite documentation [httpd.apache.org] for details on these comments. If you prefer examples instead of the general documentation then check out the URL Rewriting Guide, there's a link at the bottom of that page.