php 报 Not Found The requested URL /index.php was not found on this server.

版权声明:用吾文章请获得吾同意或加上吾的链接,说明转载引用至何处 https://blog.csdn.net/qq_33356398/article/details/90765534

问题:首页没问题,下面的链接报错,Not FoundThe requested URL /index/index/shop_index/system_platform_id/1.html
链接路径前面加index.php就不报错了

1.看文档
https://www.kancloud.cn/manual/thinkphp5/118012
在这里插入图片描述
2.加入文件.htaccess
在这里插入图片描述

<IfModule mod_rewrite.c>
  Options +FollowSymlinks -Multiviews
  RewriteEngine On

  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteRule ^(.*)$ index.php?/$1 [QSA,PT,L]

  RewriteCond %{SERVER_PORT} !^443$
  RewriteCond %{SERVER_PORT} !^80$      //不自动跳https访问,http访问也成功
  RewriteRule ^(.*)$ https://%{SERVER_NAME}%{REQUEST_URI} [L,R]
</IfModule>

猜你喜欢

转载自blog.csdn.net/qq_33356398/article/details/90765534