热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

简单介绍apache的rewirte配置教程

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

任何二级域名,均跳转到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语句,执行条件判断。


推荐阅读
author-avatar
lanxians
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有