亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么在yii2中重寫url并隱藏index.php

發布時間:2021-06-07 16:26:10 來源:億速云 閱讀:142 作者:Leah 欄目:開發技術

怎么在yii2中重寫url并隱藏index.php?相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。

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

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

第二步 :

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 文件

怎么在yii2中重寫url并隱藏index.php

內容如下 :

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

看完上述內容,你們掌握怎么在yii2中重寫url并隱藏index.php的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

涡阳县| 海南省| 宝山区| 方山县| 叶城县| 平塘县| 泸州市| 桂林市| 乐陵市| 乌拉特后旗| 东乡县| 城步| 原平市| 巴塘县| 新乡县| 且末县| 炎陵县| 汉川市| 泽普县| 刚察县| 大丰市| 五华县| 比如县| 元阳县| 鲁甸县| 广宁县| 开江县| 绥中县| 锡林浩特市| 上栗县| 肃南| 镇安县| 都江堰市| 宝鸡市| 鄱阳县| 隆化县| 嘉峪关市| 修文县| 阿拉善右旗| 武强县| 若羌县|