当前位置:首页 » 编程语言 » 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 16:04:21 浏览:295
java免费离线编译器 发布:2025-09-23 14:54:56 浏览:271
征途脚本赚钱 发布:2025-09-23 14:41:41 浏览:294
apache设置访问ip 发布:2025-09-23 14:41:29 浏览:885
英雄枪战脚本 发布:2025-09-23 14:38:17 浏览:808
c语言报数 发布:2025-09-23 14:36:14 浏览:585
企业邮箱密码在哪里 发布:2025-09-23 14:30:27 浏览:807
编译原理东南大学教材 发布:2025-09-23 14:21:54 浏览:584
现在汽车主流配置是什么 发布:2025-09-23 14:09:45 浏览:747
宿舍感人故事脚本 发布:2025-09-23 14:06:43 浏览:594