emlog个人博客系统在IIS6.0下伪静态怎么做?
时间:2022-01-13 19:44:32
小编:斜杆下载
emlog 默认伪静态规则如下:
这个伪静态在apache服务器下是可以的,但是在
Microsoft-IIS/6.0伪静态点击链接时都跳转到首页
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteBase /
RewriteRule . /index.php [L]
亲测在win03服务器上面可以 把.htaccess 规则改成下面的规则
最终修改Microsoft-IIS/6.0伪静态规则如下:完美支持伪静态了
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteBase /
RewriteRule ^(.*)$ /index.php/$1 [L]