all pages redirect on home page(Root Domain) using htaccess
RewriteEngine on
RewriteCond %{REQUEST_URI} !/$
RewriteRule (.*) / [R=301,L]
All pages redirect on ony one page (show as message) using htaccess
Following For example any one use
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} !^/holdingpage.html$
RewriteRule ^(.*)$ http://website.com//holdingpage.html [R=307,L]
RewriteEngine on
RewriteCond %{REQUEST_URI} !/holdingpage.php$
RewriteRule (.*) /holdingpage.php [R=301,L]
RewriteEngine on
RewriteCond %{REQUEST_URI} !/$
RewriteRule (.*) / [R=301,L]
All pages redirect on ony one page (show as message) using htaccess
Following For example any one use
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} !^/holdingpage.html$
RewriteRule ^(.*)$ http://website.com//holdingpage.html [R=307,L]
RewriteEngine on
RewriteCond %{REQUEST_URI} !/holdingpage.php$
RewriteRule (.*) /holdingpage.php [R=301,L]
No comments:
Post a Comment