我刚刚在我的笔记本电脑上安装了Symfony框架(运行Ubuntu 10.04),但我希望能够从windows机器开发它。
这是我网站的apache配置文件:
# Be sure to only have this line once in your configuration
NameVirtualHost 127.0.0.1:8080
# This is the configuration for your project
Listen 8080
<VirtualHost 127.0.0.1:8080>
DocumentRoot "/var/www/graffiti/web"
DirectoryIndex index.php
<Directory "/var/www/graffiti/web">
AllowOverride All
Allow from All
</Directory>
Alias /sf /var/www/graffiti/lib/vendor/symfony/data/web/sf
<Directory "/var/www/graffiti/lib/vendor/symfony/data/web/sf">
AllowOverride All
Allow from All
</Directory>
</VirtualHost>
当我访问localhost:8080时,我得到了“Symfony Project Created”页面。
在我的桌面上,当我访问本地IP 192.168.1.103:8080时,出现404错误。
如果我启用其他网站,我可以从我的桌面访问就好了。我很难知道我需要更改什么以允许远程访问symfony。
答案 0 :(得分:1)
想出来。
我必须替换
的所有实例127.0.0.1:8080
用;
*:8080
现在可行。