我在Wordpress里面设置固定链接之后网页怎么打不开呢?求指点?

2024-11-07 00:29:25
推荐回答(2个)
回答1:

LZ是先设置伪静态吧,如果是win的主机空间是可以通过上传一个httpd.ini的文件到空间根目录,然后再后台点左面的【设置】里面的【固定链接】按钮。选择【自定义结构】,在后面写入

/%category%/%post_id%.html

保存好了,LZ在看下。

下面是httpd.ini文件的代码:

[ISAPI_Rewrite]
# 3600 = 1 hour
CacheClockRate 3600
RepeatLimit 32
# 中文tag解决
RewriteRule /tag/(.*) /index\.php\?tag=$1
# 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]

回答2:

您的主机支持伪静态吗?