如何让其他公共用户在WAMP中从您的服务器打开firefox

时间:2016-05-23 11:19:17

标签: php apache laravel server wamp

我正在使用laravel 5.2使用我的Windows服务器创建API,我的API将打开一个firefox浏览器。

当我使用" php artisan serve"在cmd中打开8000端口,API工作正常。

但是当我在httpd.conf中设置虚拟主机时,它无法打开firefox,并且返回我"浏览器在超时之前没有响应"。

<VirtualHost *:80>
    ServerName test.localhost
    DocumentRoot "c:/wamp/www/test/public/"
    Options Indexes FollowSymLinks
    SetEnv APPLICATION_ENV "development"

    <Directory "c:/wamp/www/test/public/">
        Options Indexes MultiViews FollowSymLinks
        AllowOverride All
        Require all granted
   </Directory>
</VirtualHost>

我尝试设置防火墙以允许通过端口80访问所有连接,但它仍然不适用于我。

0 个答案:

没有答案