- Joined
- Jan 5, 2012
- Posts
- 1,070
- Reaction score
- 32
Ok, at the moment my site is just http://mysite.co.uk, but i want it to be http://www.mysite.co.uk, tried doing this by changing the .htaccess file but it tries to go to www. - doesn't load though!
Here's what I have now:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
What should it be to get it working the way I want it?
Here's what I have now:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
What should it be to get it working the way I want it?