Adding www to a url: Difference between revisions
From Joomla! Documentation
| Line 3: | Line 3: | ||
Add the following to your htaccess file | Add the following to your htaccess file | ||
<source lang="text"> | |||
RewriteEngine On | RewriteEngine On | ||
RewriteCond %{HTTP_HOST} ^ | RewriteCond %{HTTP_HOST} ^domain\.net$ [NC] | ||
RewriteRule ^(.*)$ http://www. | RewriteRule ^(.*)$ http://www.domain.net/$1 [R=301,L] | ||
</source> | |||
Revision as of 20:59, 24 September 2009
How do I get www as a prefix in all my joomla sites?
Add the following to your htaccess file
RewriteEngine On
RewriteCond %{HTTP_HOST} ^domain\.net$ [NC]
RewriteRule ^(.*)$ http://www.domain.net/$1 [R=301,L]