apache伪静态与iis伪静态规则与配置区别介绍
更新时间:2012年12月31日 14:48:27 作者:
本文章来总结一下关于apache伪静态与iis伪静态区别介绍,主要讲到了一些规则的问题与配置区别,以后大家就可以直接在iis伪静态转换apache,反之也很简单哦,需要了解的碰可以参考下
本文章来总结一下关于apache伪静态与iis伪静态区别介绍,主要讲到了一些规则的问题与配置区别,以后大家就可以直接在iis伪静态转换apache,反之也很简单哦。
<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>
iis的httpd.ini配置文件是以:[ISAPI_Rewrite] 将写模式打开。
打开你的httpd.ini,找到
[ISAPI_Rewrite]
# 3600 = 1 hour
CacheClockRate 3600
RepeatLimit 32
# Protect httpd.ini and httpd.parse.errors files
# from accessing through HTTP
RewriteRule ^(.*)/archiver/([a-z0-9-]+.html)$ $1/archiver/index.php?$2
RewriteRule ^(.*)/forum-([0-9]+)-([0-9]+).html$ $1/forumdisplay.php?fid=$2&page=$3
RewriteRule ^(.*)/thread-([0-9]+)-([0-9]+)-([0-9]+).html$ $1/viewthread.php?tid=$2&extra=page%3D$4&page=$3
RewriteRule ^(.*)/profile-(username|uid)-(.+?).html$ $1/viewpro.php?$2=$3
更多详细内容请查看:https://www.jb51.net/article/29390.htm
区别
apache不需要网站域名,而iis需要网站域名,且IIS遇到需要重写的URL有问号(?)与点(.)时,需要增加()进行转义.
区别如下:
iis:
RewriteRule ^(.*)/category(d+).html$ $1/index.php?catid=$2
apache:
RewriteRule ^category(d+).html$ index.php?catid=$1 [QSA,L]
在我开时打开模式不一样:
apache的.htaccess配置文件是以:RewriteEngine On 将写模式打开。
Apache伪静态html(URL Rewrite)设置法
phpma一 打开 Apache 的配置文件 httpd.conf 。
phpma二 将#LoadModule rewrite_module modules/mod_rewrite前面的#去掉
phpma三 在 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>
iis的httpd.ini配置文件是以:[ISAPI_Rewrite] 将写模式打开。
打开你的httpd.ini,找到
[ISAPI_Rewrite]
复制代码 代码如下:
# 3600 = 1 hour
CacheClockRate 3600
RepeatLimit 32
# Protect httpd.ini and httpd.parse.errors files
# from accessing through HTTP
RewriteRule ^(.*)/archiver/([a-z0-9-]+.html)$ $1/archiver/index.php?$2
RewriteRule ^(.*)/forum-([0-9]+)-([0-9]+).html$ $1/forumdisplay.php?fid=$2&page=$3
RewriteRule ^(.*)/thread-([0-9]+)-([0-9]+)-([0-9]+).html$ $1/viewthread.php?tid=$2&extra=page%3D$4&page=$3
RewriteRule ^(.*)/profile-(username|uid)-(.+?).html$ $1/viewpro.php?$2=$3
更多详细内容请查看:https://www.jb51.net/article/29390.htm
区别
apache不需要网站域名,而iis需要网站域名,且IIS遇到需要重写的URL有问号(?)与点(.)时,需要增加()进行转义.
区别如下:
iis:
复制代码 代码如下:
RewriteRule ^(.*)/category(d+).html$ $1/index.php?catid=$2
apache:
复制代码 代码如下:
RewriteRule ^category(d+).html$ index.php?catid=$1 [QSA,L]
您可能感兴趣的文章:
- Apache服务器中使用.htaccess实现伪静态URL的方法
- Apache中使非伪静态url跳转到伪静态url的方法
- PHP+APACHE实现网址伪静态
- PHP伪静态Rewrite设置之APACHE篇
- php伪静态之APACHE篇
- Apache伪静态Rewrite详解
- thinkphp路由规则使用示例详解和伪静态功能实现(apache重写)
- apache中伪静态配置和使用(Apache虚拟主机下Discuz伪静态)
- Apache 配置伪静态详细步骤
- WampServer设置apache伪静态出现404 not found及You don''t have permission to access / on this server解决方法分析
相关文章
解决ubuntu安装软件时,status-code=409报错的问题
这篇文章主要介绍了解决ubuntu安装软件时,status-code=409报错的问题,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教2022-12-12如何在Ubuntu 18.04(实体机)上配置OpenWRT的开发环境
这篇文章主要介绍了如何在Ubuntu 18.04(实体机)上配置OpenWRT的开发环境,本文通过图文并茂的形式给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下2020-07-07
最新评论