tp5去掉index.php,模块不存在:public

发布时间:2020-07-28作者:小灵龙点击:58

问题描述:
打开域名的时候,域名打开后的路径是域名/public。但是有些页面跳转的时候会出现

模块不存在:public

解决办法:

在public/index.php中 添加文件.htaccess
<IfModule mod_rewrite.c>
  Options +FollowSymlinks -Multiviews
  RewriteEngine On

  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteRule ^(.*)$ index.php?s=/$1 [QSA,PT,L]
</IfModule>
其中index.php后面的?作用是解决No input file specified 。s=的作用是使http://utiao.cn/public/index/index/skbmember正常运行。如果没有 s=这个标识,就会出现“模块不存在:public”



标签:tp5