相信很多的站长都喜欢 WordPress 做自己的 BLOG~但 WIN 对 WordPress 支持不够好!比如固链接!系统无故出现 500 错误!给我们造成了很大的烦脑!光是百度、 GOOGLE,一搜一大罗什么样的说法都有。但就是问题不能解决!
以下呢本人亲测做了此总结比较简单!
如何让 WIN 主机的用户在架设 WordPress-BLOG 实现固链接和去除无缘无故系统 500 错误!
第一步:首先让虚拟主机空间商把你的 WordPress 的 404 页面。指向 WEB 内的 404.php 。如果是服务器侧自行指向。有的虚拟主机呢有控制面板的话。也可以从控制面板里指向 WEB 内的 404.php.
第二步:在根目录里。建立 httpd.ini 文档。内容如下
[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] |
第三步:在根目录里建立 web.cofing 文档。内容如下:
<?xml version=」1.0″ encoding=」UTF-8″?> <configuration> <system.webServer> <httpErrors errorMode=」Detailed」 /> <asp scriptErrorSentToBrowser=」true」 /> </system.webServer> </configuration> |
第四步:固链接的自定义本人用的是/%postname%.html
以上几步做完就 OK 了~感谢大家支持。