我安装了wamp server
,它运行正常,因为图标颜色为绿色,甚至localhost工作正常,但是当我在www folder
中添加任何PHP文件并尝试访问文件时问题就出现了给了我这条消息:
404 error The requested URL was not found on this server.
任何帮助将不胜感激。
答案 0 :(得分:0)
如何在localhost上运行wamp服务器上的PHP项目或文件?
C://wamp/www/
目录中创建PHP项目或文件。http://localhost/file_name.php or folder name
如果文件夹中有index.php
个文件,则会通过调用URL中的文件夹名称来运行。
答案 1 :(得分:0)
答案 2 :(得分:0)
您应通过 /wamp64/bin/apache/apache2.4.41/conf/extra/httpd-vhosts.conf检查 httpd-vhosts.conf 文件。追随例如,此处的端口号83就是我的选择:
# Virtual Hosts
#
<VirtualHost *:83>
ServerName localhost
ServerAlias localhost
DocumentRoot "${INSTALL_DIR}/www"
<Directory "${INSTALL_DIR}/www/">
Options +Indexes +Includes +FollowSymLinks +MultiViews
AllowOverride All
Require local
</Directory>
</VirtualHost>
#
<VirtualHost *:83>
ServerName myProject
DocumentRoot "d:/wamp64/www/spip-projet-v"
<Directory "d:/wamp64/www/spip-projet-v/">
Options +Indexes +Includes +FollowSymLinks +MultiViews
AllowOverride All
Require local
</Directory>
</VirtualHost>