How to add 301 redirecting in url add www before the url?
Url rewriting in htaccess 310 for redirecting the url from website.com to www.website.com
and you can use this code to add 301 redirect to your webiste to redirect the url from without www to www
like http://website.com to http://www.website.com
simple copy and paste this code in your htaccess file and replace the website word to your website name
RewriteCond %{HTTP_HOST} ^website\.com$ [NC]
RewriteRule ^(.*)$ http://www.website.com/$1 [R=301,L]
and you can use this code to add 301 redirect to your webiste to redirect the url from without www to www
like http://website.com to http://www.website.com
simple copy and paste this code in your htaccess file and replace the website word to your website name
RewriteCond %{HTTP_HOST} ^website\.com$ [NC]
RewriteRule ^(.*)$ http://www.website.com/$1 [R=301,L]
Comments
Post a Comment