Wampserver没有检查根子文件夹// Magento site

时间:2016-11-11 13:32:12

标签: magento wamp wampserver vhosts

编辑:看起来就像是错误的端口。将3333端口改为80,它就像一个魅力。

Heyo,我刚刚开始使用没有经验的Wamp来设置本地开发环境,并且在加载除根目录中的页面之外的页面时遇到一些麻烦。

这是我得到的:

Failed loading attempt

如果我尝试浏览网站上的链接,我会找不到页面。

我已经设置了 httpd.vhosts.conf 文件:

# Virtual Hosts
#

<VirtualHost *:3333>
    ServerName localhost
    DocumentRoot c:/wamp64/www
    <Directory  "c:/wamp64/www/">
        Options +Indexes +Includes +FollowSymLinks +MultiViews
        AllowOverride All
        Require local
    </Directory>
</VirtualHost>
#


<VirtualHost *:3333>
    ServerName server1.dev
    DocumentRoot "c:/wamp64/www/server1.dev/htdocs"
    <Directory  "c:/wamp64/www/server1.dev/htdocs/">
        Options +Indexes +Includes +FollowSymLinks +MultiViews
        AllowOverride All
        Require local
    </Directory>
</VirtualHost>


<VirtualHost *:3333>
    ServerName server2.dev
    DocumentRoot "c:/wamp64/www/server2.dev/htdocs"
    <Directory  "c:/wamp64/www/server2.dev/htdocs/">
        Options +Indexes +Includes +FollowSymLinks +MultiViews
        AllowOverride All
        Require local
    </Directory>
</VirtualHost>

现在我有两台服务器,而server1工作正常,而server2则没有,两者都有包含css和更多页面的子文件夹。 Server2 是具有大型数据库的 magento 站点,而server1是没有数据库的普通站点。

我已经设置了core_config_data,如:

core_config_data

我不知道是否应该添加端口但没有它就没有改变任何东西。在查找文件时或点击首页上的链接时,它也不会添加端口。

预期: http://server2.dev:3333/media/css/style.css

获取: http://server2.dev/media/css/style.css

我的local.xml:

<?xml version="1.0"?>
<config>
    <global>
        <install>
            <date><![CDATA[*removed*]]></date>
        </install>
        <crypt>
            <key><![CDATA[*removed*]]></key>
        </crypt>
        <disable_local_modules>false</disable_local_modules>
        <resources>
            <db>
                <table_prefix><![CDATA[]]></table_prefix>
            </db>
            <default_setup>
                <connection>
                    <host><![CDATA[server2.dev:3333]]></host>
                    <username><![CDATA[*removed*]]></username>
                    <password><![CDATA[*removed*]]></password>
                    <dbname><![CDATA[*removed*]]></dbname>
                    <initStatements><![CDATA[SET NAMES utf8]]></initStatements>
                    <model><![CDATA[mysql4]]></model>
                    <type><![CDATA[pdo_mysql]]></type>
                    <pdoType><![CDATA[]]></pdoType>
                    <active>1</active>
                </connection>
            </default_setup>
        </resources>
        <session_save><![CDATA[files]]></session_save>
    </global>
    <admin>
        <routers>
            <adminhtml>
                <args>
                    <frontName><![CDATA[admin]]></frontName>
                </args>
            </adminhtml>
        </routers>
    </admin>
</config>

0 个答案:

没有答案