Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a website on Apache Web Server built on HTML5 Boilerplate for frontend and Codeigniter 2.1.2 for backend. I use the .htaccess file from html5boilerplate as a base. I added from the codeigniter site a redirection rule to remove "www" url i redirect them to non "www" urls.

The problem is: I cant access the site with http://www.beta.alcor.pl

http://beta.alcor.pl works

However is I type one with www it sort of get's cached. For example in IE9:

  • Open IE9, type: beta.alcor.pl, [enter] -> works
  • type: www.beta.alcor.pl -> not working
  • type beta.alcor.pl -> not working

The first rewrite cond/rule is from: https://github.com/h5bp/html5-boilerplate/blob/master/.htaccess#L365 The second rewrite cond/rule is from http://ellislab.com/codeigniter/user-guide/general/urls.html to remove the codeigniter index.php

The relevant htaccess part:

<IfModule mod_rewrite.c>
  RewriteCond %{HTTPS} !=on
  RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC]
  RewriteRule ^ http://%1%{REQUEST_URI} [R=301,L]

  RewriteCond $1 !^(index\.php|img|assets|js|css|robots\.txt|sitemap.xml)
  RewriteRule ^(.*)$ /index.php/$1 [L]
</IfModule>

Removing the first part (the www redirection) makes it not work

share|improve this question

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

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.