在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.php
至
http://subdomain.domain.com/some.php
?
请注意,我还想在此subdomain