Перенаправление .htaccess не работает - PullRequest
1 голос
/ 03 февраля 2011

Я пытаюсь перенаправить http://mydomain.com на http://www.mydomain.com

Я добавляю это в мой файл htaccess, но он не работает:

  RewriteCond %{HTTP_HOST} ^mydomain\.fr [NC]
  RewriteRule ^(.*)$ http://www.mydomain.fr/$1 [L,R=301]

Это полный файл:

Options +FollowSymLinks +ExecCGI

<IfModule mod_rewrite.c>
  RewriteEngine On

  RewriteCond %{HTTP_HOST} ^mydomain\.fr [NC]
  RewriteRule ^(.*)$ http://www.mydomain.fr/$1 [L,R=301]

  # uncomment the following line, if you are having trouble
  # getting no_script_name to work
  #RewriteBase /

  # we skip all files with .something
  #RewriteCond %{REQUEST_URI} \..+$
  #RewriteCond %{REQUEST_URI} !\.html$
  #RewriteRule .* - [L]

  # we check if the .html version is here (caching)
  RewriteRule ^$ index.html [QSA]
  RewriteRule ^([^.]+)$ $1.html [QSA]
  RewriteCond %{REQUEST_FILENAME} !-f

  # no, so we redirect to our front web controller
  RewriteRule ^(.*)$ index.php [QSA,L]
</IfModule>

Ответы [ 2 ]

0 голосов
/ 11 февраля 2011
  # Never keep domain name without subdomain
  RewriteCond %{HTTP_HOST} ^mydomain\.fr$ [NC]
  RewriteRule ^(.*)$ http://www.mydomain.fr/$1 [R=301,L]
0 голосов
/ 03 февраля 2011

Попробуйте:

RewriteCond %{HTTP_HOST} !^www.mydomain.fr [NC]
RewriteRule ^(.*)$ http://www.mydomain.fr/$1 [L,R=301]

Я использую это на существующем сайте в настоящее время - кажется, работает нормально здесь.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...