其他分享
首页 > 其他分享> > 首页可以进去,其他页面一点击跳转出现The requested URL * was not found on this server.;

首页可以进去,其他页面一点击跳转出现The requested URL * was not found on this server.;

作者:互联网

检测你的apache开启了rewrite_module模块,

 

如果开启了Apache的rewrite_module模块:

在项目目录添加.htaccess文件。

 

如果没有开启了Apache的rewrite_module模块:

找到apache的httpd.conf文件

LoadModule rewrite_module modules/mod_rewrite.so

就是将前面"#"去掉,如果不存在则添加上句。

如果你的网站是根目录的话:找到

<Directory />

  Options FollowSymLinks

  AllowOverride None  

</Directory>

将上面的None改为All

如果你的站点不在根目录,设置如下:

<Directory "/var/www/html/directory_name"> 

Order allow,deny

Allow from all

AllowOverride All

</Directory>

标签:requested,rewrite,module,AllowOverride,模块,跳转,Apache,根目录,was
来源: https://www.cnblogs.com/chongyang-s/p/16443054.html