登录  /  注册
首页 > php框架 > YII > 正文

yii2如何隐藏index.php

藏色散人
发布: 2020-08-17 09:02:43
原创
2971人浏览过

yii2隐藏index.php的方法:首先打开urlmanager组件的配置;然后配置文件nginx.conf内容;接着将项目域名的配置整体放在vhost目录下;最后在入口文件的同级目录下放置“.htaccess”文件即可。

yii2如何隐藏index.php

推荐:《yii教程

yii2 url 重写 隐藏 index.php 方法

第一步  : 不管是  apache 还是  nginx ,想要隐藏 Index.php 文件,需要打开  urlManager  组件的配置,在进行后续的操作

企业微信截图_15976257968073.png

第二步 :

nginx   下 :

配置文件  nginx.conf 内容如下 :

user  centos;
worker_processes  4; 
error_log  
logs/error.log; 
pid        logs/nginx.pid; 
 
events {    
worker_connections  10240;
} 
 
http {    include       mime.types;    
default_type  application/octet-stream; 
    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '                      
    '$status $body_bytes_sent "$http_referer" '                      
    '"$http_user_agent" "$http_x_forwarded_for"'; 
    log_format log_json '{ "@timestamp": "$time_local", '                        
    '"remote_addr": "$remote_addr", '                        
    '"referer": "$http_referer", '                        
    '"request": "$request", '                        
    '"status": $status, '                        
    '"bytes": $body_bytes_sent, '                        
    '"agent": "$http_user_agent", '                       
    '"x_forwarded": "$http_x_forwarded_for", '                        
    '"up_addr": "$upstream_addr",'                        
    '"up_host": "$upstream_http_host",'                        
    '"up_resp_time": "$upstream_response_time",'                        
    '"request_time": "$request_time"'                        
    ' }'; 
 
   access_log  logs/access.log; 
    sendfile        on;    #tcp_nopush     on; 
    #keepalive_timeout  0;    keepalive_timeout  200;        
    client_max_body_size 200M;    gzip  on; 
        include vhost/*.conf;
}
登录后复制

项目域名的配置整体是放在 vhost 这个目录下面,改目录下其中一个文件的内容

server {        listen  80;        
server_name     域名; 
        # 项目 index.php 地址        
        root /home/centos/www/youdai-api/bird/web; 
        access_log logs/youdaiApi.access.log log_json;        
        error_log logs/youdaiApi.error.log; 
        location / {                
        try_files $uri $uri/ /index.php?$args;                
        index   index.php;
        } 
        location ~ \.php$ {                
        fastcgi_pass 127.0.0.1:9000;                
        fastcgi_index index.php;                
        fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;                
        include fastcgi_params;
        } 
        location ~ /\.ht {                
        deny all;
        }
}
登录后复制

apche 下 : 伪静态配置
入口文件的同级目录下,放置 .htaccess 文件

企业微信截图_15976258044716.png

内容如下 :

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?/$1 [QSA,PT,L]
登录后复制

以上就是yii2如何隐藏index.php的详细内容,更多请关注php中文网其它相关文章!

智能AI问答
PHP中文网智能助手能迅速回答你的编程问题,提供实时的代码和解决方案,帮助你解决各种难题。不仅如此,它还能提供编程资源和学习指导,帮助你快速提升编程技能。无论你是初学者还是专业人士,AI智能助手都能成为你的可靠助手,助力你在编程领域取得更大的成就。
相关标签:
来源:php中文网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
最新问题
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 意见反馈 讲师合作 广告合作 最新更新
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习
PHP中文网抖音号
发现有趣的

Copyright 2014-2024 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号