.htaccess url在CakePHP中为子域重写

时间:2015-06-12 08:11:18

标签: apache .htaccess cakephp mod-rewrite

在CakePHP中,我正在以这种方式为子文件夹添加我的url重写异常:

/public_html/subdomain/.htaccess

RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]

/public_html/.htaccess

<IfModule mod_rewrite.c>
    RewriteEngine on
    RewriteBase /
    RewriteCond %{REQUEST_URI} !^/subdomain
    RewriteRule    ^$ app/webroot/    [L]
    RewriteRule    (.*) app/webroot/$1 [L]
</IfModule>

所以现在我怎样才能做出异常并同时不断指出 http://domain.com/subdomain/some.phphttp://subdomain.domain.com/some.php

请注意,我还想在此subdomain

中安装另一个CakePHP应用程序

0 个答案:

没有答案