當前位置:首頁 » 編程語言 » 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" 改成 "" 就可以了。

熱點內容
scratch少兒編程課程 發布:2025-04-16 17:11:44 瀏覽:619
榮耀x10從哪裡設置密碼 發布:2025-04-16 17:11:43 瀏覽:346
java從入門到精通視頻 發布:2025-04-16 17:11:43 瀏覽:61
php微信介面教程 發布:2025-04-16 17:07:30 瀏覽:288
android實現陰影 發布:2025-04-16 16:50:08 瀏覽:781
粉筆直播課緩存 發布:2025-04-16 16:31:21 瀏覽:333
機頂盒都有什麼配置 發布:2025-04-16 16:24:37 瀏覽:196
編寫手游反編譯都需要學習什麼 發布:2025-04-16 16:19:36 瀏覽:785
proteus編譯文件位置 發布:2025-04-16 16:18:44 瀏覽:349
土壓縮的本質 發布:2025-04-16 16:13:21 瀏覽:578