如果你是win主机,需要在网站下做个子站,也就是 www.abc.com/shop/
不过直接建立文件夹是无法访问的,需要修改下规则文件!
源文件如下:
- [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]
 
需要的就是增加两行代码,如下:
- [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 /shop(.*) /shop$1 [L]
 - RewriteRule /shop/(.*) /shop/$1 [L]
 - RewriteRule ^/$ /index.php [L]
 - RewriteRule /(.*) /index.php/$1 [L]
 
如果要建立的子站文件夹名不是shop,则对应修改下四个单词即可!
然后用FTP上传替换即可!
方法转自互联网

				
				
2014年06月28日 13:22 -9楼
关注下了还啊!
2014年06月28日 14:46 地下1层
@烂番茄 嗯哼,谢谢光临!O(∩_∩)O~
2014年10月25日 14:25 -8楼
你好,是否可以友链一下?多支持啊