當前位置:首頁 » 編程語言 » 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-09-23 14:41:41 瀏覽:290
apache設置訪問ip 發布:2025-09-23 14:41:29 瀏覽:881
英雄槍戰腳本 發布:2025-09-23 14:38:17 瀏覽:801
c語言報數 發布:2025-09-23 14:36:14 瀏覽:579
企業郵箱密碼在哪裡 發布:2025-09-23 14:30:27 瀏覽:803
編譯原理東南大學教材 發布:2025-09-23 14:21:54 瀏覽:579
現在汽車主流配置是什麼 發布:2025-09-23 14:09:45 瀏覽:742
宿舍感人故事腳本 發布:2025-09-23 14:06:43 瀏覽:588
阿里雲配置外網訪問 發布:2025-09-23 14:03:11 瀏覽:633
當貝播放器ftp教程 發布:2025-09-23 14:02:15 瀏覽:536