emlog个人博客系统在IIS6.0下伪静态怎么做?

日期:2024-03-08 编辑:ucbug下载站

emlog个人博客系统在IIS6.0下伪静态怎么做?

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]


相关下载
相关文章
猜你喜欢