成功解决apache:the requested .html URL was not found on this server

bigder.cn首页可以打开,访问任何一个子页面时,都不能正常跳转,提示:the requested .html URL was not found on this server,出现404错误

解决方法:

一、检查apache网站根目录,有没有.htaccess文件存在,比如我的是存放目录:

ll -a /var/www/html/chanzhieps/www/.htaccess,

没有就需要新建一个空白文件,把下面的内容贴进去。

.htaccess是一个隐藏文件,需要ll -a 或者 ls -a 命令显示

.htaccess的文件内容:


  RewriteEngine On
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteRule (.*)$ index.php/$1 [L]

二、修改Apache的httpd.conf文件

查找:AllowOverride None,修改为:AllowOverride All

三、重启apache生效
service httpd restart

你可能感兴趣的:(apache,php,服务器)