Apache重写未开启,导致The requested URL /xxxx.html was not found on this server

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 /xxxx.html was not found on this server)