为什么之前localhost,localhost/test.php都可以访问,后来加了test01.com之后就不行了呢?但test01.com可以访问
Not Found
The requested URL /test.php was not found on this server.
Not Found
The requested URL /test.php was not found on this server.
2015-09-20
在httpd-vhosts.conf里面加一个这个,还有记得端口.
<VirtualHost *:8080>
DocumentRoot "C:/YII/demo"
ServerName localhost
</VirtualHost>
加一个这个就可以解决了
访问的时候记得加上端口号8080
http://localhost:8080/test.php
举报