|
本帖最后由 hardrock 于 2013-12-9 14:41 编辑
想在主机实现一空间多站点,都是wp站点。
例如建立目录a,public_html/a/, 想a.com就能访问, a.com/a/ 这样就不好!
网上找到代码,.htaccess- RewriteEngine on
- RewriteCond %{HTTP_HOST} ^(www.)?example.com$
- RewriteCond %{REQUEST_URI} !^/a/
- RewriteCond %{REQUEST_FILENAME} !-f
- RewriteCond %{REQUEST_FILENAME} !-d
- RewriteRule ^(.*)$ /a/$1
- RewriteCond %{HTTP_HOST} ^(www.)?example.com$
- RewriteRule ^(/)?$ a/ [L]
复制代码 1, <IfModule mod_rewrite.c> </IfModule> 这两个要不要加上去?
2,
public_html/.htaccess
public_html/a/.htaccess 这两个哪个放得对?
补充内容 (2014-5-7 15:24):
1,主域名作为域名A.com, public_html/.htaccess
2,add domains 绑定域名B.com,自动建目录B, public_html/B/.htaccess
补充内容 (2014-5-8 14:57):
http://www.eefaq.com/thread-115989-1-1.html |
|