wordpress博客站已经运行快一年了,在伪静态上一直很纠结,空间默认不支持伪静态,网上找了很多方法,用404错误页面来做伪静态,现在发现了问题了。google收录了,但百度不收录,因为百度在爬行页面的时候,文章链接都跳到了404页面,百度认为是错误页面,就不收录了。
为了做伪静态,让百度也收录,我终于不嫌麻烦,找空间商提供伪静态支持了。告诉空间商,我用的是WordPress程序,需要做伪静态。空间商的技术很快就帮忙搞定了。将Rewrite放到根目录,里面配置文件也有。之前我也在网上找 了伪静态规则的,我把httpd.ini放在根目录,好让技术知道伪静态规则是什么。
PHPcode2">[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 /software-files/(.*) /software-files/$1 [L] RewriteRule /images/(.*) /images/$1 [L] 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]
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。