2014-01-16 61 views
0

我想知道如何配置一個子域到網站。 例 www.domain.com subdomain.domain.comHtaccess(或+ CakePHP)

如何配置htaccess的訪問文件夾的子域,並用它

public_html 
app 
lib 
plugins 
vendors... 
subdomain 
    app 
    lib... 

這是我的htaccess

<IfModule mod_rewrite.c> 
    RewriteEngine on 
    RewriteRule ^$ app/webroot/ [L] 
    RewriteRule (.*) app/webroot/$1 [L] 
</IfModule> 

謝謝

+0

你想在子域中安裝cakephp嗎? – cornelb

+0

是的!但主要cakephp和htaccess並沒有重定向到我的子域文件夾..給錯誤'500內部服務器錯誤:(' –

回答

2

in public_html/.htaccess:

<IfModule mod_rewrite.c> 
    RewriteEngine on 

    RewriteCond %{REQUEST_FILENAME} !subdomain/ 
    RewriteRule ^$ app/webroot/ [L] 

    RewriteCond %{REQUEST_FILENAME} !subdomain/ 
    RewriteRule (.*) app/webroot/$1 [L] 

</IfModule>