tp5去掉index.php,模块不存在:public
未知
2020-07-28 11:27:56
0次
问题描述:
打开域名的时候,域名打开后的路径是域名/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数据库备份代码
问题描述: 一直使用tp5.0,做个数据库备份试试。 解决办法: ...
2023-12-07 17:38:31