从来未用过win主机,所以本人对这个问题也未研究过,今天帮别人弄了一下,还是很简单,记录一下方便有同样问题的童鞋查询。
打开记事本,把下面代码粘贴进去:
[isapi_rewrite]
# 3600 = 1 hour
cacheclockrate 3600
repeatlimit 32
# protect httpd.ini and httpd.parse.errors files
# from accessing through http
# rules to ensure that normal content gets through
rewriterule /sitemap.xml /sitemap.xml [l]
rewriterule /favicon.ico /favicon.ico [l]
# for file-based wordpress content (i.e. theme), admin, etc.
rewriterule /wp-(.*) /wp-$1 [l]
# for normal wordpress content, via index.php
rewriterule ^/$ /index.php [l]
rewriterule /(.*) /index.php/$1 [l]
保存时保存类型选择“所有文件”,并输入文件名称:httpd.ini
将这个httpd.ini文件上传到wp程序所在的目录也就是与index.php在同一个目录内。
之后进入wp后台修改固定链接,比如:/%category%/%post_id%.html
刷新博客首页,打开文章链接看看链接地址中的index.php是不是消失了。
另外,网上还有说使用cos-html-cache静态化插件也可以实现,个人建议不要使用此方法,静态化插件也是我强烈建议新手不要用的一个插件,之前写过一篇:浅谈wordpress静态化,对个人小博静态化插件,对你没有任何用处,只会带来无尽的问题,而且很多新手在知道很多问题是静态化插件造成的后,直接删除插件,这是错误的,拿cos- html-cache静态化插件为例,删除插件前,应首先进入插件设置页面,清除缓存,之后再删除插件,不然缓存文件依然存在,页面显示的还是静态化后的内容,插件删除也不会再更新了。