thinkphp相关问题总结

thinkphp相关问题总结

1、隐藏/index.php

Thinkphp 启动时,/项目名/public启动不来,必须加上/index.php才可以,其他方法一概不好使,后来才知道,需要将index.php隐藏

具体方法:

隐藏入口文件 public/index.php 同级的.htaccess文件

<IfModule mod_rewrite.c>
Options +FollowSymlinks
RewriteEngine On

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

参考:https://www.cnblogs.com/fangyinghua/p/7436203.html

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章