The .htaccess File

by 1 replies
1
Where in the .htaccess file (top, bottom, or center) does the piece of code go to 301 redirect a URL? For example, a non-www to a www URL?
#search engine optimization #file #htaccess
  • Try this before anything else:

    Code:
    RewriteEngine On
    RewriteCond %{HTTP_HOST} www.yoursite.com
    RewriteRule ^(.*) http://yoursite.com/$1 [L,R=301]
    that will transform www to no www

Next Topics on Trending Feed