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

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