我的博客是 Win+IIS 环境,经过对比站长们的经验教程,我选择了 Rewite 规则来实现 WordPress 的伪静态。具体方法如下:
-
- 咨询空间商,服务器是否已开启 Rewrite 规则的支持
- 新增 httpd.ini 文件,写入以下代码,并拷贝至网站根目录
[ISAPI_Rewrite] # 3600 = 1 hour CacheClockRate 3600 RepeatLimit 32 # Protect httpd.ini and httpd.parse.errors files # from accessing through HTTP # wordpress weijingtai # For tag RewriteRule /tag/(.*)/page/(\d+)$ /index\.php\?tag=$1&paged=$2 RewriteRule /tag/(.+)$ /index\.php\?tag=$1 # For category RewriteRule /category/(.*)/page/(\d+)$ /index\.php\?category_name=$1&paged=$2 RewriteRule /category/(.*) /index\.php\?category_name=$1 # For sitemapxml 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] # For robots.txt RewriteRule /robots.txt /robots.txt [L]
- 然后到 wordpress 后台修改固定链接为%post_id%.html 即可,当然也可以是其他的, 个人建站时就已经选择了这个形式,所以不能随便更改,否则谷歌就要 K 掉我了!
至于这个方法的原理以及 httpd.ini 的写法,网络上有大把大把的解说,我也就再不赘述了。写这篇文章的主要目的是告诉跟我一样的菜鸟站长们,使用“404 伪静态”的方法会对百度的收录造成一定障碍,还请慎用之!当然,是否属实还得看我今天修改之后的效果如何了,静候佳音吧!