美文网首页我爱编程
Apache重写未开启,导致The requested URL

Apache重写未开启,导致The requested URL

作者: 墨丘利lh | 来源:发表于2018-02-08 16:53 被阅读0次

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

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

apache 打开 httpd.conf 文件 找到

#LoadModule rewrite_module modules/mod_rewrite.so

去掉前面的#号

找到

Options Indexes FollowSymLinks

AllowOverride None =>改为 AllowOverride All

Order allow,deny

Allow from all

然后完美解决!

相关文章

网友评论

    本文标题:Apache重写未开启,导致The requested URL

    本文链接:https://www.haomeiwen.com/subject/bwittftx.html