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

【小众消息】
https://fzqxk86ywz.feishu.cn/sheets/GugIsI9zKhNaEwtJscbcgKFCn6b?from=from_copylink

「软件测试入门和进阶实践资料v1.0.xlsx」
https://fzqxk86ywz.feishu.cn/share/base/view/shrcnp65x91aNEkF2REnU2VcmmH

网站首页可以打开,访问任何一个子页面时,都不能正常跳转,提示: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的文件内容:

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

二、修改Apache的httpd.conf文件

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

三、重启apache生效
service httpd restart