问题原因:Apache重写未开启,导致The requested URL /xxxx.html was not found on this server
问题解决,方法如下:
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>
然后完美解决!