apache,nginx 隐藏index.php

如果有个网址是这样的 http://www.example.com/index.php/goods

如果觉得index.php不好看,要变成  http://www.example.com/goods

那么对于apache服务器,.htaccess就这样写: 

RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php [L,QSA,E=PATH_INFO:$1]

然后重启apache。

 

如果是nginx,假设是作为一个虚拟站点部署的,那么找到vhosts.conf, 这样写: 

server {
        listen 80;
        server_name  www.example.com ;
        root   "D:\example";
        location / {
            index  index.html index.htm index.php;
            if (!-e $request_filename) {                
                rewrite ^/(.*)$ /index.php/$1 last;                
            }  
        }       
}

然后重启nginx。

假如index.php所在的不是根目录,而是二级路径,例如这样的:

http://www.example.com/web/index.php/goods

要变成 

http://www.example.com/web/goods

那么nginx就这样: 

server {
        listen 80;
        server_name  www.example.com ;
        root   "D:\example";
        location / {
            index  index.html index.htm index.php;
            if (!-e $request_filename) {                
                rewrite ^/web/(.*)$ /web/index.php/$1 last;                
            }  
        }       
}

 

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值