Warning: file_get_contents(/data/phpspider/zhask/data//catemap/8/magento/5.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Apache HTTPS页面可见,但在Firebug(和google)中为404_Apache_Magento_Ssl_Https - Fatal编程技术网

Apache HTTPS页面可见,但在Firebug(和google)中为404

Apache HTTPS页面可见,但在Firebug(和google)中为404,apache,magento,ssl,https,Apache,Magento,Ssl,Https,我们最近为此Magento商店添加了HTTPS: 出于某种原因,我们在主页的Firebug/WebInspector网络窗格中找不到404 简单测试页不会返回404: 页面似乎工作正常,还检查了所有css/js请求,所有200 OK响应。 GoogleInsights也报告了404错误 这可能是服务器配置中的某些内容吗?有什么好主意吗 Apache配置: <VirtualHost 178.18.91.65:443 > SSLEngine on

我们最近为此Magento商店添加了HTTPS:

出于某种原因,我们在主页的Firebug/WebInspector网络窗格中找不到404

简单测试页不会返回404: 页面似乎工作正常,还检查了所有css/js请求,所有200 OK响应。 GoogleInsights也报告了404错误

这可能是服务器配置中的某些内容吗?有什么好主意吗

Apache配置:

<VirtualHost 178.18.91.65:443 >
            SSLEngine on
            SSLCertificateFile /usr/local/directadmin/data/users/wedding/dom              ains/weddingdeco.nl.cert
            SSLCertificateKeyFile /usr/local/directadmin/data/users/wedding/              domains/weddingdeco.nl.key
            SSLCACertificateFile /usr/local/directadmin/data/users/wedding/d              omains/weddingdeco.nl.cacert
            ServerName www.weddingdeco.nl
            ServerAlias www.weddingdeco.nl weddingdeco.nl  partydeco.nl www.              partydeco.nl
            ServerAdmin webmaster@weddingdeco.nl
            DocumentRoot /home/wedding/domains/weddingdeco.nl/private_html
            ScriptAlias /cgi-bin/ /home/wedding/domains/weddingdeco.nl/publi              c_html/cgi-bin/
            UseCanonicalName OFF
            <IfModule !mod_ruid2.c>
                    SuexecUserGroup wedding wedding
            </IfModule>
            <IfModule mod_ruid2.c>
                    RMode config
                    RUidGid wedding wedding
                    RGroups apache access
            </IfModule>
            CustomLog /var/log/httpd/domains/weddingdeco.nl.bytes bytes
            CustomLog /var/log/httpd/domains/weddingdeco.nl.log combined
            ErrorLog /var/log/httpd/domains/weddingdeco.nl.error.log
    <Directory /home/wedding/domains/weddingdeco.nl/private_html>
            php_admin_flag safe_mode OFF
            php_admin_flag engine ON
            php_admin_value sendmail_path '/usr/sbin/sendmail -t -i -f weddi              ng@weddingdeco.nl'
    </Directory>

我认为这是apache配置的问题,能否显示此主机的配置?请参阅编辑。网站正在DirectAdmin上运行,私有html与公共html符号链接。。。可能是重写的吗?有什么想法吗?