美文网首页
解决wampserver安装完成后,项目无法进行跳转问题

解决wampserver安装完成后,项目无法进行跳转问题

作者: LiChangBao | 来源:发表于2017-08-16 19:09 被阅读0次

    问题原因: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>

    然后完美解决!

    相关文章

      网友评论

          本文标题:解决wampserver安装完成后,项目无法进行跳转问题

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