.htacess怎么改成http.ini规则的重写规则?


我本来用的是apache,但是这边需求搭了个iis的,因此我程序里面的.htacess重写规则全部失效了,说是要改成http.ini但是我不知道规则怎么写。
有种形式
一.引导
<IfModule rewrite_module>
RewriteEngine on

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-l
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(?!(/Pub/)).+$ Pub/$0 [PT,NS]

#RewriteRule ^$ Pub/index.php [PT,L]

</IfModule>

二,加载目录下的index.php
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]


Deny from All

请问一下这三种形式的怎么改成http.ini形式的。有谁用过iis的吗

iis php

生活不能自理 11 years, 11 months ago

Your Answer