apache 伪静态配置方法
发布:smiling 来源: PHP粉丝网 添加日期:2013-11-23 16:57:14 浏览: 评论:0
Apache伪静态html(URL Rewrite)设置法
一 打开 Apache 的配置文件 httpd.conf 。
二 将#LoadModule rewrite_module modules/mod_rewrite前面的#去掉
三 在 httpd.conf中添加:
- <IfModule mod_rewrite.c>
- RewriteEngine On
- #RewriteCond %{ENV:SCRIPT_URL} (?:index|dispbbs)[-0-9]+.html
- RewriteRule ^(.*?(?:index|dispbbs))-([-0-9]+).html$ $1.php?
- __is_apache_rewrite=1&__rewrite_arg=$2
- </IfModule>
- <ifmodule mod_rewrite.c>
- RewriteEngine On
- RewriteRule /news/top2007,(d+).html$ /news/readmore.php?id=$1
- </ifmodule>
四 保存httpd.conf并重启apache。
Apache Web Server(独立主机用户)
首先确定您使用的 Apache 版本,及是否加载了 mod_rewrite 模块。
Apache 1.x 的用户请检查 conf/httpd.conf 中是否存在如下两段代码:
LoadModule rewrite_module libexec/mod_rewrite.so
AddModule mod_rewrite.c
Apache 2.x 的用户请检查 conf/httpd.conf 中是否存在如下一段代码:
LoadModule rewrite_module modules/mod_rewrite.so
如果存在,那么在配置文件(通常就是 conf/httpd.conf)中加入如下代码。此时请务必注意,如果网站使用通过虚拟主机来定义,请务必加到虚拟主机配置,即 <VirtualHost>中去,如果加在虚拟主机配置外部将可能无法使用。改好后然后将 Apache 重启。
- <IfModule mod_rewrite.c>
- RewriteEngine On
- RewriteRule ^(.*)/ivideo(-tv-([0-9]+))?(-ti-([0-9]+))?(-tc-([0-9]+))?(-page-
- ([0-9]+))?.html$ $1/ivideo.php?tv=$3&ti=$5&tc=$7&page=$9
- RewriteRule ^(.*)/ispecial(-tv-([0-9]+))?(-ti-([0-9]+))?(-tc-([0-9]+))?(-page-
- ([0-9]+))?.html$ $1/ispecial.php?tv=$3&ti=$5&tc=$7&page=$9
- RewriteRule ^(.*)/icategory.html$ $1/icategory.php
- RewriteRule ^(.*)/category-cid-([0-9]+)(-tag-([^-]*))?(-timelimit-([0-9]+))?(-
- orderlimit-([0-9]+))?(-page-([0-9]+))?.html$ $1/category.php?
- cid=$2&tag=$4&timelimit=$6&orderlimit=$8&page=$10
- RewriteRule ^(.*)/vspace-(mid|username)-(.+).html$ $1/vspace.php?$2=$3
- RewriteRule ^(.*)/video-(vid|ivid)-(.+).html$ $1/video.php?$2=$3
- RewriteRule ^(.*)/special-spid-([0-9]+).html$ $1/special.php?spid=$2
- </IfModule>
如果没有安装 mod_rewrite,您可以重新编译 Apache,并在原有 configure 的内容中加入 --enable-rewrite=shared,然后再在 Apache 配置文件中加入上述代码即可。
Apache Web Server(虚拟主机用户)
在开始以下设置之前,请首先咨询您的空间服务商,空间是否支持 Rewrite 以及是否支持对站点目录中 .htaccess 的文件解析,否则即便按照下面的方法设置好了,也无法使用。
检查播客所在目录中是否存在 .htaccess 文件,如果不存在,请手工建立此文件。Win32系统下,无法直接建立 .htaccess 文件,您可以从其他系统中拷贝一份,或者在discuz.net 技术支持栏目中下载此文件。编辑并修改 .htaccess 文件,添加以下内容:
- #将 RewriteEngine 模式打开 RewriteEngine On
- # 修改以下语句中的 /supev 为你的播客目录地址,如果程序放在根目录中,请将 /supev 修改为 /
- RewriteBase /supev
- # Rewrite 系统规则请勿修改 RewriteRule
- RewriteRule ^ivideo(-tv-([0-9]+))?(-ti-([0-9]+))?(-tc-([0-9]+))?(-page-([0-9]
- +))?.html$ ivideo.php?tv=$2&ti=$4&tc=$6&page=$8
- RewriteRule ^ispecial(-tv-([0-9]+))?(-ti-([0-9]+))?(-tc-([0-9]+))?(-page-([0-
- 9]+))?.html$ ispecial.php?tv=$2&ti=$4&tc=$6&page=$8
- RewriteRule ^icategory.html$ icategory.php
- RewriteRule ^category-cid-([0-9]+)(-tag-([^-]*))?(-timelimit-([0-9]+))?(-
- orderlimit-([0-9]+))?(-page-([0-9]+))?.html$ category.php?
- cid=$1&tag=$3&timelimit=$5&orderlimit=$7&page=$9
- RewriteRule ^vspace-(mid|username)-(.+).html$ vspace.php?$1=$2
- RewriteRule ^video-(vid|ivid)-(.+).html$ video.php?$1=$2
- RewriteRule ^special-spid-([0-9]+).html$ special.php?spid=$1
- <VirtualHost *:80>
- DocumentRoot /home/www_php168
- ServerName www.111cn.cn
- <IfModule mod_rewrite.c>
- RewriteEngine On
- RewriteRule ^(.*)/list-([0-9]+)-([0-9]+).htm$ $1/list.php?fid=$2&page=$3
- RewriteRule ^(.*)/bencandy-([0-9]+)-([0-9]+)-([0-9]+).htm$ $1/bencandy.php?
- fid=$2&id=$3&page=$4
- </IfModule>
- </VirtualHost>
Tags: apache 静态 配置
相关文章
- ·在apache下限制每个虚拟主机的并发数(2013-11-14)
- ·APACHE禁止图片盗链(2013-11-14)
- ·Apache下的虚拟主机设置(2013-11-14)
- ·Apache中禁止IP段,在httpd.conf中的写法(2013-11-14)
- ·用Apache的rewrite生成伪静态页面(2013-11-14)
- ·HTTP/Apache 错误代码汇总(2013-11-14)
- ·Apache性能优化技巧(2013-11-22)
- ·用Session代替Apache服务器验证(2013-11-22)
- ·Apache中httpd.conf的中文件详解(2013-11-22)
- ·Apache中.Htaccess文件的功能写法(2013-11-22)
- ·如何让apache支持.htaccess并设置404错误页(2013-11-22)
- ·apache 虚拟主机配置[别名配置方法](2013-11-22)
- ·apache 服务器网站不能访问(2013-11-22)
- ·apache教程:.htaccess用法(2013-11-22)
- ·Apache二级域名配置方法(2013-11-22)
- ·apache 封IP基础教程(2013-11-22)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)