wordpress技巧-win主机下WP二级子站无法访问解决办法

如果你是win主机,需要在网站下做个子站,也就是 www.abc.com/shop/

不过直接建立文件夹是无法访问的,需要修改下规则文件!

源文件如下:

  1. [ISAPI_Rewrite]
  2. 3600 = 1 hour
  3. CacheClockRate 3600
  4. RepeatLimit 32
  5. # Protect httpd.ini and httpd.parse.errors files
  6. # from accessing through HTTP
  7. # Rules to ensure that normal content gets through
  8. RewriteRule /sitemap.xml /sitemap.xml [L]
  9. RewriteRule /favicon.ico /favicon.ico [L]
  10. # For file-based wordpress content (i.e. theme), admin, etc.
  11. RewriteRule /wp-(.*) /wp-$1 [L]
  12. # For normal wordpress content, via index.php
  13. RewriteRule ^/$ /index.php [L]
  14. RewriteRule /(.*) /index.php/$1 [L]

需要的就是增加两行代码,如下:

  1. [ISAPI_Rewrite]
  2. 3600 = 1 hour
  3. CacheClockRate 3600
  4. RepeatLimit 32
  5. # Protect httpd.ini and httpd.parse.errors files
  6. # from accessing through HTTP
  7. # Rules to ensure that normal content gets through
  8. RewriteRule /sitemap.xml /sitemap.xml [L]
  9. RewriteRule /favicon.ico /favicon.ico [L]
  10. # For file-based wordpress content (i.e. theme), admin, etc.
  11. RewriteRule /wp-(.*) /wp-$1 [L]
  12. # For normal wordpress content, via index.php
  13. RewriteRule /shop(.*) /shop$1 [L]
  14. RewriteRule /shop/(.*) /shop/$1 [L]  
  15. RewriteRule ^/$ /index.php [L]
  16. RewriteRule /(.*) /index.php/$1 [L]

如果要建立的子站文件夹名不是shop,则对应修改下四个单词即可!

然后用FTP上传替换即可!

方法转自互联网

您可以选择一种方式赞助本站

支付宝扫一扫赞助

微信钱包扫描赞助

目前评论:3   其中:访客  0   博主  0

  1. avatar 烂番茄 2

    关注下了还啊!

  2. avatar 飞哥 2

    你好,是否可以友链一下?多支持啊

评论加载中...

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

图片 表情