简体   繁体   中英

Symfony 4 - My Wampserver Vhost doesn't work

I would like to use a vHost for my Symfony 4 project.

It is at c:/wamp64/www/symbnbb

So, in my host file, I added this:

127.0.0.1 symbnbb.local ::1 symbnbb.local

And at %APACHEDIR%\\conf\\extra\\httpd-vhosts.conf, I added:

<VirtualHost *:80>
    ServerName symbnbb.local
    ServerAlias www.symbnbb.local

    DocumentRoot "c:/wamp64/www/symbnbb/public"
    <Directory "c:/wamp64/www/symbnbb/public/">
        AllowOverride All
        Order Allow,Deny
        Allow from All
    </Directory>
</VirtualHost>

But it doesn't work, and if I go to localhost, I've this :

Le chemin ${INSTALL_DIR}/www pour DocumentRoot n'existe pas (Fichier c:/wamp64/bin/apache/apache2.4.37/conf/extra/httpd-vhosts.conf)
Le chemin ${INSTALL_DIR}/www/ pour <Directory ... n'existe pas (Fichier c:/wamp64/bin/apache/apache2.4.37/conf/extra/httpd-vhosts.conf)

Can someone help me please ?

In your host file juste write :

127.0.0.1 symbnbb.local

In your vhost delete :

ServerAlias www.symbnbb.local

Then in your webbrowser, call "symbnbb.local", it should work.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM