主頁 > 知識(shí)庫 > yii2 url重寫并隱藏index.php方法

yii2 url重寫并隱藏index.php方法

熱門標(biāo)簽:電子圍欄 科大訊飛語音識(shí)別系統(tǒng) Linux服務(wù)器 阿里云 銀行業(yè)務(wù) Mysql連接數(shù)設(shè)置 服務(wù)器配置 團(tuán)購網(wǎng)站

第一步 : 不管是 apache 還是 nginx ,想要隱藏 Index.php 文件,需要打開 urlManager 組件的配置,在進(jìn)行后續(xù)的操作

[
‘components' => [
 'urlManager' => [
  'enablePrettyUrl' => true,//開啟美化URL
  'showScriptName' => false,//是否顯示腳本名稱:index.php,同時(shí)應(yīng)該配置 Web 服務(wù)
  'enableStrictParsing' => false,//是否開啟嚴(yán)格解析
  //'suffix' => '.html',//生成帶 .html 后綴的 URL
  'rules' => [
    
   ],
  ],
],
]

第二步 :

nginx 下 :

配置文件 nginx.conf 內(nèi)容如下 :

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;
}

項(xiàng)目域名的配置整體是放在 vhost 這個(gè)目錄下面,改目錄下其中一個(gè)文件的內(nèi)容

server {
    listen 80;
    server_name   域名;
 
    # 項(xiàng)目 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 下 : 偽靜態(tài)配置

入口文件的同級(jí)目錄下,放置 .htaccess 文件

內(nèi)容如下 :

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

以上就是本文的全部內(nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

您可能感興趣的文章:
  • 在php的yii2框架中整合hbase庫的方法
  • Yii2壓縮PHP中模板代碼的輸出問題
  • Yii2框架中使用PHPExcel導(dǎo)出Excel文件的示例
  • 實(shí)例講解yii2.0在php命令行中運(yùn)行的步驟
  • PHP之深入學(xué)習(xí)Yii2緩存Cache組件詳細(xì)講解

標(biāo)簽:廣元 棗莊 江蘇 衡水 蚌埠 萍鄉(xiāng) 衢州 大理

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《yii2 url重寫并隱藏index.php方法》,本文關(guān)鍵詞  ;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 收縮
    • 微信客服
    • 微信二維碼
    • 電話咨詢

    • 400-1100-266