放置Yii2应用程序vhost时出现前所未有的错误

时间:2018-01-10 05:28:08

标签: apache yii2 vhosts

到目前为止,我在为Yii2应用程序创建vhost时遇到了前所未有的问题。原则上,我像往常一样,但应用程序不想启动并显示错误NET :: ERR_CERT_AUTHORITY_INVALID,这是目前无法理解的。我请你帮忙,因为我不知道我能做错什么。

我使用的是Windows 7,Apache / 2.4.25,PHP 7

以下是配置http-vhost.conf:

<VirtualHost *: 80>
    ServerName aio.localhost
    DocumentRoot "C:/xampp/htdocs/aio/panel/web"
    <Directory "C:/xampp/htdocs/aio/panel/web">
        Options Indexes FollowSymLinks
            AllowOverride All
            Require all granted
    </ Directory>


    ErrorLog "C:/xampp/htdocs/aio/panel/runtime/logs/server_error.log"
    CustomLog "C:/xampp/htdocs/aio/panel/runtime/logs/server_access.log" combined
</VirtualHost>

以下是主机定义:

127.0.0.1 aio.localhost

这里我放了一张包含文件夹结构的照片:

enter image description here

此处有来自浏览器的错误:

enter image description here

您是否有任何人通过尝试遇到此问题将应用程序放在Yii2中?

现在它工作正常。对不起,这个问题。

1 个答案:

答案 0 :(得分:0)

Okey我在panel / web / .htaccess中发现了一个问题。我删除了行:

RewriteCond %{SERVER_PORT} 80
RewriteRule (.*) https://%{SERVER_NAME}/$1 [R,L]