浏览器显示The requested URL *** was not found on this server

来源:互联网 发布:php mysql 长连接 速度 编辑:程序博客网 时间:2024/06/11 15:19

今天帮人家配项目环境,全部搭建好后,比如 www.xxx.com/xxx/xxx.html 就会报错

The requested URL /xxxx.html was not found on this server

因为是新搭建的环境,apache的重写未开启,开启重写后,问题解决,方法如下:

apache 打开 httpd.conf 文件 找到

#LoadModule rewrite_module modules/mod_rewrite.so

去掉前面的

找到

<Directory "E:/online/webs/Apache24/htdocs">

Options Indexes FollowSymLinks

AllowOverride None =>改为 AllowOverride All

Order allow,deny

Allow from all

</Directory>

然后完美解决!

同时注意Apache配置虚拟主机httpd-vhosts.conf问题我的另一篇文章可以学习

阅读全文
0 0
原创粉丝点击