我有一个主网站 xyz.org 用cake php编写,其低于.htaccess 规则。当我尝试访问子域时,即使我在子域目录中只放置了index.php,它也会出现“500内部服务器错误”。
以下是根<。p>的.htaccess
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^$ app/webroot/ [L]
RewriteRule (.*) app/webroot/$1 [L]
</IfModule>
<IfModule mod_php5.c>
php_value max_execution_time 259200
</IfModule>
我在cakephp框架中有主域名网站,在yii中有子域名。