我的CakePHP的2.2网站不工作的子域(My cakephp 2.2 site not work

2019-10-19 01:44发布

我的CakePHP 2X网站我的本地机器上工作的罚款。

但我已经上传子域服务器是不工作的。

我希望我的CakePHP网站上的子域正在与管理员前缀

http://vertaxtechnology.com/ =>是我的域名

http://dev.vertaxtechnology.com/ =是我的子域

http://dev.vertaxtechnology.com/eventapp =是我的蛋糕目录

这是我的根htaccess的

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

这是我的应用程序的htaccess

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

这是我的根目录的htaccess

<IfModule mod_rewrite.c>

    RewriteEngine On
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^(.*)$ index.php [QSA,L]

</IfModule>

请帮助谢谢

文章来源: My cakephp 2.2 site not working on subdomain