apache 301设置不带www跳转到带www域名

jerry apache 2015年08月26日 收藏
  1. Options +FollowSymLinks
  2. IndexIgnore */*
  3.  
  4. #禁止访问目录
  5. Options -Indexes
  6. #404错误页面
  7. ErrorDocument 404 /404.html
  8.  
  9. RewriteEngine on
  10.  
  11. #301带www跳转
  12. #RewriteCond %{HTTP_HOST} !^jianzhan.love$ [NC]
  13. #RewriteRule ^(.*)$ http://jianzhan.love/$1 [L,R=301]
  14.  
  15. #301不带www跳转
  16. RewriteCond %{HTTP_HOST} ^jianzhan.love [NC]
  17. RewriteRule ^(.*)$ http://www.jianzhan.love/$1 [L,R=301]
  18.  
  19. #if a directory or a file exists, use it directly
  20. RewriteCond %{REQUEST_FILENAME} !-f
  21. RewriteCond %{REQUEST_FILENAME} !-d
  22. #otherwise forward it to index.php
  23. RewriteRule . index.php