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

php隱藏indexphp

發布時間: 2025-04-09 00:16:54

❶ 部分網站url中index.php自動隱藏是如何實現的

根目錄下新建立一個配置文件,命名為: .htaccess
在裡面這樣寫:

RewriteEngineon
RewriteCond$1!^(index.php|images|robots.txt)
RewriteRule^(.*)$/index.php/$1[L]

就可以去掉 index.php 了。要注意 /index.php/$1 要根據你目錄(Web 目錄,比如 http://www.domain.com/index.php)的實際情況來定,比如網站根目錄是 /ci/index.php 則要寫成 /ci/index.php/$1

RewriteCond$1!^(index.php|images|robots.txt)

上面的代碼意思是排除某些目錄或文件,使得這些目錄不會 rewrite 到 index.php 上,這一般用在圖片、js、css 等外部資源上。也就是說非 PHP 代碼都要排除出去。(這里我排除了 images 目錄和 robots.txt 文件,當然 index.php 也應該被排除)
哦,對了,還要修改 config.php 這個文件中的下列內容:

/*
|--------------------------------------------------------------------------
|IndexFile
|--------------------------------------------------------------------------
|
|Typicallythiswillbeyourindex.phpfile,unlessyou'verenameditto
|somethingelse.Ifyouareusingmod_rewritetoremovethepagesetthis
|variablesothatitisblank.
|
*/
$config['index_page']="index.php";

把其中的 "index.php" 改成 "" 就可以了。

熱點內容
大學編程教材 發布:2025-04-30 04:06:02 瀏覽:694
android源碼簽名 發布:2025-04-30 03:22:29 瀏覽:748
刷排名軟體源碼 發布:2025-04-30 03:09:58 瀏覽:589
我的世界伺服器禁止掛機怎麼辦 發布:2025-04-30 03:04:56 瀏覽:695
android進度條下載 發布:2025-04-30 03:04:47 瀏覽:595
童程童美少兒編程介紹 發布:2025-04-30 02:59:11 瀏覽:110
c語言是指什麼 發布:2025-04-30 02:59:09 瀏覽:799
電腦打開ftp沒有文件 發布:2025-04-30 02:59:02 瀏覽:731
vimpython插件 發布:2025-04-30 02:26:29 瀏覽:488
110壓縮機 發布:2025-04-30 02:25:08 瀏覽:511