最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
Apache域名绑定并隐藏index.php文件的方法
时间:2022-06-25 00:14:12 编辑:袖梨 来源:一聚教程网
apache下绑定域名
方法如下:
1、找到apache安装目录下的httpd.conf并打开,在最后加上:
代码如下 | 复制代码 |
NameVirtualHost *:80 |
2、找到C:/Windows/System32/drivers/etc下的hosts文件并打开,在最后加上:
代码如下 | 复制代码 |
127.0.0.1 localhost |
3、重启apache服务。
搞定!
ThinkPHP去除url中的index.php
例如你的原路径是 http://localhost/test/index.php/index/add
那么现在的地址是 http://localhost/test/index/add
如何去掉index.php呢?
1、httpd.conf配置文件中加载了mod_rewrite.so模块 //在APACHE里面去配置
代码如下 | 复制代码 |
|
把前面的警号去掉
2、AllowOverride None 讲None改为 All //在APACHE里面去配置 (注意其他地方的AllowOverride也统统设置为ALL)
代码如下 | 复制代码 |
|
3、确保URL_MODEL设置为2,在项目的配置文件里写
代码如下 | 复制代码 |
return Array( |
4 、.htaccess文件必须放到跟目录下
这个文件里面加:
代码如下 | 复制代码 |
RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L] |
补充:在windows下不能建立以点开头的文件,你可以先随便建立一个文件
然后在DOS在操作 rename xxxx.xxxx .htaccess
相关文章
- 王者荣耀侦探能力大测试攻略 王者荣耀侦探能力大测试怎么过 11-22
- 无期迷途主线前瞻兑换码是什么 11-22
- 原神欧洛伦怎么培养 11-22
- 炉石传说网易云音乐联动怎么玩 11-22
- 永劫无间手游确幸转盘怎么样 11-22
- 无期迷途主线前瞻兑换码是什么 无期迷途主线前瞻直播兑换码介绍 11-22