当前位置:首页 > PHP教程 > Apach > 列表

简单介绍apache的rewirte配置教程

发布:smiling 来源: PHP粉丝网  添加日期:2013-11-23 23:34:31 浏览: 评论:0 

任何二级域名,均跳转到www下。本地测试站点:www.phpfensi.com,下面是apache里的配置:

  1.  
  2.     "D:/webroot/phpfensi.com"
  3.         Options -Indexes FollowSymLinks 
  4.         Allow from all 
  5.         AllowOverride All  
  6.          
  7.     ServerAdmin admin@www.phpfensi.com 
  8.     DocumentRoot "D:/webroot/phpfensi.com" 
  9.     ServerName phpfensi.com:80 
  10.     ServerAlias *.phpfensi.com    
  11.   RewriteEngine on 
  12.   RewriteCond %{HTTP_HOST} ^phpfensi.com 
  13.   RewriteRule ^(.*)$ http://www.phpfensi.com/ 
  14.     ErrorLog logs/www.phpfensi.com-error_log 
  15.  

注意:“ServerAlias *.phpfensi.com ”这个配置必须有。

方法二:在网站根目录下建立.htaccess文件,讲跳转代码写在这个文件中即可

apache中的配置为:

  1.  
  2.     "D:/webroot/phpfensi.com"
  3.         Options -Indexes FollowSymLinks 
  4.         Allow from all 
  5.         AllowOverride All  
  6.          
  7.     ServerAdmin admin@www.phpfensi.com 
  8.     DocumentRoot "D:/webroot/phpfensi.com" 
  9.     ServerName phpfensi.com:80 
  10.     ServerAlias *.phpfensi.com  
  11.     ErrorLog logs/www.phpfensi.com-error_log 
  12.  

.htaccess文件中的文件配置为:

  1. RewriteEngine on 
  2. RewriteCond %{HTTP_HOST} ^phpfensi.com 
  3. RewriteRule ^(.*)$ http://www.phpfensi.com/ 

注意:添加.htaccess文件文件时,必须在apache里配置:

  1. Options -Indexes FollowSymLinks 
  2. Allow from all 
  3. AllowOverride All 

以上三项。“.htaccess文件”的创建方法:在windows下无法直接创建这个文件,需通过文件编辑器创建,我用editplus,应该还有其它工具。

RewriteCond语句的作用类似if语句,执行条件判断。

Tags: apache rewirte 配置教程

分享到: