i was trying to make my indexhibit installation to use nice urls + domain redirect to make it allways using 'www' in page URL but i've failed. Nice urls works fine but i can't make this www redirect work.

Here is my original htaccess file:

RewriteEngine on 
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^(.+) - [PT,L]
RewriteRule ^(.+) index.php

I was trying to add those lines

RewriteCond %{HTTP_HOST} !^www.domain.com$
RewriteRule ^(.*)$ http://www.domain.com/$1 [R=301]

before RewriteCond %{REQUEST_FILENAME} -f [OR], after RewriteRule ^(.+) index.php and in any possible place but it allways breaks the page. Can you please advise me how to make it properly ? Thanks in advance :)

link|improve this question

73% accept rate
How does it break the page? – Ulrich Palha Feb 8 at 14:30
it depends on where i'll put those two lines but basically styles/images are not loaded OR i'm getting 404 error OR i'm not redirected to www URL. – mbajur Feb 8 at 18:41
1  
You should add the lines at the top of you htaccess. Also try clearing your browser cache. Old incorrect redirect might still be cached. While debugging I always use 302 instead of 301, and the change it back once I get it working. Helps keeping my sanity. – Gerben Feb 8 at 19:35
when i'm putting it after RewriteEngine on, when i'm reaching website with WWW, none of JS, CSS files or images are loaded. You can see it here: adamwilkoszarski.com – mbajur Feb 9 at 0:12
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.