|
大多数情况下,人们试用的是apache的rewrite:
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond $1 !^(index.php|images|robots\.txt)
RewriteRule ^(.*)$ index.php/$1 [L]
其中前面的2个RewriteCond 就是rewrite需要满足条件:改URL指向的文件或文件夹不存在时才启用rewrite
而 IIS中 ISAPI Rewrite 的 RewriteCond 应该怎么写呢? IIS好像没有
RewriteCond %{REQUEST_FILENAME} !-f
这样的写法。。。。大哥大姐们指教一下!多谢! |
|