The requested URL xxx was not found on this server.
配置好lamp服务器,把项目放到服务器上,发现项目访问不了了,并提示:The requested URL xxx was not found on this server.。 错误原因: 新搭建的环境,apache的重写未开启,开启重写后,问题解决,方法如下:
第一步:
vi /etc/httpd/httpd.conf
找到,下面一行内容,去掉前面的“#”:
#LoadModule rewrite_module modules/mod_rewrite.so
改为:
LoadModule rewrite_module modules/mod_rewrite.so
第二步: 找到与“AllowOverride”相关的内容:
AllowOverride None
Require all denied
所有的都改为:
AllowOverride All
Require all granted
第三步: 重启Apache。
/etc/init.d/httpd restart
执行以上步骤后,重启apache问题解决。
******************只要思想不滑坡,办法总比困难多*****************