IIS6+PHP+MYSQL+ISAPI_Rewrite3伪静态配置

解决您在不同平台环境下遇到的安装和升级问题
回复
bzasy
帖子: 7
注册时间: 2015年 7月 1日 11:38

IIS6+PHP+MYSQL+ISAPI_Rewrite3伪静态配置

帖子 bzasy »

今天在半天的查阅中终于搞定伪静态

系统环境是 windows2003+IIS6+MYSQL+PHP 伪静态是ISAPI_Rewrite3 0087破解版
下面是教程地址和软件下载地址 (转自某CSDN博客)
http://blog.csdn.net/keke0307/article/details/7031233

上午发的进后台有点问题,下午又研究一下午才解决的

下面是我的配置规则

代码: 全选

RewriteEngine On
RewriteCompatibility2 On
RepeatLimit 32
RewriteBase
# unsupported directive:  [ISAPI_Rewrite]
#  3600 = 1 hour
# unsupported directive: CacheClockRate 3600
RewriteRule ^/tag/(.*)$ /index\.php\?tag=$1
RewriteRule ^/sitemap.xml$ /sitemap.xml [L]
RewriteRule ^/favicon.ico$ /favicon.ico [L]
RewriteRule ^/(.*).html$ /index.php/$1.html [L]
RewriteRule ^/(.*)/comment$ /index.php/$1/comment [L]
RewriteRule ^/category/(.*)$ /index.php/category/$1 [L]
RewriteRule ^/page/(.*)$ /index.php/page/$1 [L]
RewriteRule ^/search/(.*)$ /index.php/search/$1 [L]
RewriteRule ^/feed/(.*)$ /index.php/feed/$1 [L]
RewriteRule ^/2(.*)$ /index.php/2$1 [L]
RewriteRule ^/action(.*)$ /index.php/action$1 [L]


现在这样分类目录下的文章都是打不开的,先进后台----永久链接----自定义文章路径修改为按分类归档即可

PS. IIS6的伪静态可真难啊

给IIS6还在找怎么伪静态的人献上
上次由 bzasy 在 2015年 7月 2日 00:49,总共编辑 2 次。
bzasy
帖子: 7
注册时间: 2015年 7月 1日 11:38

Re: IIS6+PHP+MYSQL+ISAPI_Rewrite3伪静态配置

帖子 bzasy »

自己顶个贴试试
头像
ClayMore
帖子: 2481
注册时间: 2007年 11月 29日 02:55
来自: Sleeping Forest
联系:

Re: IIS6+PHP+MYSQL+ISAPI_Rewrite3伪静态配置

帖子 ClayMore »

个人感觉PHP还是linux下实际点


__________________

新版阿里百秀Alibaixiu主题 v11.1 For Typecho
http://xiu.160.me/
回复