Redirect non-www to www using rewrite mode - Joomla! Forum - community, help and support
hi all,it has been 4 hours did googled find solution, hope able share , me out
i have problem indexing, of website indexed www , non-www
i have found solution, can not able apply
rewriteengine on
rewritecond %{http_host} ^yourdomain\.com$ [nc]
rewriterule ^(.*)$ http://www.yourdomain.com/$1 [r=301,l]
since have 4 websites, how make common .htaccess file websites without specifying domain name ..
thanks help
i have problem indexing, of website indexed www , non-www
i have found solution, can not able apply
rewriteengine on
rewritecond %{http_host} ^yourdomain\.com$ [nc]
rewriterule ^(.*)$ http://www.yourdomain.com/$1 [r=301,l]
since have 4 websites, how make common .htaccess file websites without specifying domain name ..
thanks help
try 1
haven't tested should work.
rewritecond %{http_host} !^www\.
rewriterule ^ http://www.%{http_host}%{request_uri} [l,r=301]
rewritecond %{http_host} !^www\.
rewriterule ^ http://www.%{http_host}%{request_uri} [l,r=301]
Comments
Post a Comment