0

我在我的子域 app.domain.com 中安装了 laravel 4,我的主域在 wordpress 上。我在 laravel 4 框架上的 app.subdomain.com 运行良好,但是当我使用 ssl https://app.subdomain.com运行它时,它会显示主域内容,即 wordpress 站点。

我已经有子域的通配符证书。

.htaccess 中是否有任何我需要更改的模块?

谢谢。

我的主机是hostmonster。我使用带有子域的插件域。

这是我的子域 .htaccess

<IfModule mod_rewrite.c>
    Options -MultiViews
    RewriteEngine On

    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^ index.php [L]
</IfModule>

主域(wordpress)

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

# END WordPress
4

1 回答 1

1

似乎您的主域虚拟主机覆盖了项目的 ssl 子域。如果禁用它并重新启动 apache,您的应用程序仍然无法访问吗?

因为您不需要为此更改 Laravel 和/或 htaccess。

于 2013-10-07T06:24:29.673 回答