Pcwolfx?
12-22-2011, 11:00 PM
hi guys,
if you want use for your web link this style: http://www.example.com;
Open your .htaccess files and add this part:
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\.example\.com
RewriteRule (.*) http://www.example.com/$1 [R=301,L]
Note: Edit example and com line.
If you not want the www (http://example.com) your web links, add this part and edit it;
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www\.example\.com$
RewriteRule ^(.*)$ http://example.com/$1 [L,R=301]
if you want use for your web link this style: http://www.example.com;
Open your .htaccess files and add this part:
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\.example\.com
RewriteRule (.*) http://www.example.com/$1 [R=301,L]
Note: Edit example and com line.
If you not want the www (http://example.com) your web links, add this part and edit it;
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www\.example\.com$
RewriteRule ^(.*)$ http://example.com/$1 [L,R=301]