當前位置:首頁 » 編程語言 » thinkphp隱藏indexphp

thinkphp隱藏indexphp

發布時間: 2023-09-26 06:26:55

㈠ tp5框架index.php入口文件隱藏

一,找到/public/.htaccess文件,如果你的入口文件已經移動到根目錄下,那麼你的.htaccess文件也要剪切到根目錄下,總之要確保.htaccess跟入口的index.php保持同級。
二,根據你的php環境分別設置.htaccess文件:
Apache:
<IfMole mod_rewrite.c>Options +FollowSymlinks -Multiviews
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]</IfMole>

phpstudy:
<IfMole mod_rewrite.c> Options +FollowSymlinks -Multiviews
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php [L,E=PATH_INFO:$1]
</IfMole>
Nginx(在Nginx.conf中添加):
location / { // …..省略部分代碼
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=/$1 last;
break;
}
}

熱點內容
壓縮包mp4 發布:2025-03-06 21:31:59 瀏覽:597
在b站清緩存 發布:2025-03-06 21:21:51 瀏覽:494
安卓系統中國哪裡下載 發布:2025-03-06 21:21:42 瀏覽:924
幀緩存定義 發布:2025-03-06 21:20:21 瀏覽:703
3d動畫解壓密碼 發布:2025-03-06 21:20:14 瀏覽:57
安卓系統2K哪裡下載 發布:2025-03-06 21:14:04 瀏覽:944
如何在雲主機上搭建web伺服器 發布:2025-03-06 21:09:05 瀏覽:591
電腦改為伺服器有什麼用 發布:2025-03-06 21:00:38 瀏覽:270
網站在文件夾 發布:2025-03-06 20:51:46 瀏覽:116
阿瑪尼行李箱密碼鎖如何換密碼 發布:2025-03-06 20:46:02 瀏覽:106