笔者之前用的虚拟主机,安装运行wordpress一切正常。一时兴起记得自己有一台2003的 vps,想给wordpress帮个家玩玩,提高运行效率。
问题是装了半天,发现云主机mysql5.1对wordpress的支持不是很友好,会报错,遂升级云主机mysql5.1到5.6。重新安装问题解决。
随便发了几篇文章,尼玛问题又来了,主机环境伪静态配置错误。经过笔者一番捣鼓,把此类环境配置wordpress伪静态的方法po出来。
首先在用网站管理助手的时候选择伪静态为diy
把下面的代码,放到你网站所在根目录上级文件夹others下面的httpd.conf ,保存,重启iis
[ISAPI_Rewrite] # Defend your computer from some worm attacks #RewriteRule .*(?:global.asa|default\.ida|root\.exe|\.\.).* . [F,I,O] # 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 /tag/(.*) /index\.php\?tag=$1 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]
特别声明:以上内容(如有图片或视频亦包括在内)为自媒体平台用户上传并发布,不构成投资建议请自行甄别,如有侵权请联系站长删除!客服电话大全 » 西部数码vps云主机iis6安装wordpress伪静态
评论前必须登录!