htaccess 301 redirect from one pages to another page
301 Redirect from page1 to page2
please use the below code in the htaccess file:
RewriteEngine On
Redirect 301 /page1/ /page2/
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
No comments:
Post a Comment