IIS下rewrite

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了IIS下rewrite相关的知识,希望对你有一定的参考价值。

windows系统,iis配置rewrite
下面是httpd.ini文件的内容

[ISAPI_Rewrite]
RewriteRule /(?:images|data|js|css|attachment)/(.*) $0 [I,L]
RewriteRule /(.*)\.php $0 [I,L]
RewriteRule ^(.*)$ /index.php/$1 [I,L]
根目录的所有文件夹无法访问

请问如何写网站根目录下zt01/index.hmtl能访问的规则,求赐教!

参考技术A [ISAPI_Rewrite]
CacheClockRate 3600
RepeatLimit 32
RewriteEngine On
RewriteRule ^re_([0-9]+)\.html$ /eyeglasses/replay.php?id=$1[R]
RewriteRule ^re_([0-9]+)-([0-9]+)\.html$ /eyeglasses/replay.php?id=$1&&dis=$2
RewriteRule ^re_([0-9]+)-p([0-9]+)\.html$ /eyeglasses/replay.php?id=$1&&page=$2
RewriteRule ^re_([0-9]+)-([0-9]+)-p([0-9]+)\.html$ /eyeglasses/replay.php?id=$1&&dis=$2&&page=$3
RewriteRule ^pro_([0-9]+)\.html$ /eyeglasses/product.php?id=$1
试试追问

试了,弄得我网站变成了一堆乱码

以上是关于IIS下rewrite的主要内容,如果未能解决你的问题,请参考以下文章

一、IIS下部署Django

thinkphp 3.2. iis下怎么 多域名部署

如何在虚拟机下安装iis

iis 不能配置

Win10下IIS配置项目发布添加网站

如何在 IIS 下设置 Python WSGI 服务器?