如果是,方法如下
1、新建一个httpd.ini文件,将以下代码放添加进去,放在根目录下。
[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]
2、新建一个txt文本,将以下代码内容添加进去,然后另存为404.php。
<?php
$qs = $_SERVER['QUERY_STRING']
$_SERVER['REQUEST_URI'] = substr($qs, strpos($qs, ‘:80′)+3)
$_SERVER['PATH_INFO'] = $_SERVER['REQUEST_URI']
include(‘index.php’)
?>
3、进入wordpress后台,重新设置固定链接,保存即可。
要提醒一下,这个方法不能完全搞定所有问题,在这里要再次提醒一下各位玩WordPress的朋友,WordPress是PHP语言的程序,请使用linux主机与其搭配,win主机虽然也支持php,但完全没有linux支持的好,也会避免很多不必要的问题!!
主机屋的空间支持iis的伪静态,支持的方式可以咨询客服。aspx的伪静态有两种实现方式
一种是iis的组件,有官方的,也有第三方的
另一种是.net的http模块托管,这种有时候只支持交付.net处理的文件(如 .aspx)的伪静态,兼容不太好,需要配置的服务器配置麻烦
iis组件实现的伪静态也可以支持到asp及php的伪静态,大部分主机都支持,如果是iis7.5以上,一般都支持官方的iisrewrite组件,其它的会有isapi rewrite等第三方组件
欢迎分享,转载请注明来源:夏雨云
评论列表(0条)