irwan

.htaccess : Force www. in your URL

Nov 15th, 2011
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.29 KB | None | 0 0
  1. Just add the following code to your .htaccess file in the highest folder of your web directory and yor visitors will be forced to use the www version.
  2.  
  3.  
  4.  
  5.  
  6. RewriteEngine on
  7.     RewriteCond %{HTTP_HOST} !^www.your_domain.com$
  8.     RewriteRule ^(.*)$ http://www.your_domain.com/$1 [R=301]
  9.  
Add Comment
Please, Sign In to add comment