yii2 url重寫并隱藏index.php方法
第一步 : 不管是 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]
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
PHP二維數(shù)組矩形轉(zhuǎn)置實(shí)例
下面小編就為大家?guī)硪黄狿HP二維數(shù)組矩形轉(zhuǎn)置實(shí)例。小編覺得挺不錯(cuò)的,現(xiàn)在就分享給大家,也給大家做個(gè)參考。一起跟隨小編過來看看吧2016-07-07
yii實(shí)現(xiàn)CheckBox復(fù)選框在同一行顯示的方法
這篇文章主要介紹了yii實(shí)現(xiàn)CheckBox復(fù)選框在同一行顯示的方法,對(duì)比了網(wǎng)上搜集的方法,給出了改進(jìn)的意見,非常具有實(shí)用價(jià)值,需要的朋友可以參考下2014-12-12
關(guān)于PHP的相似度計(jì)算函數(shù):levenshtein的使用介紹
本篇文章小編將為大家介紹,關(guān)于PHP的相似度計(jì)算函數(shù) levenshtein的使用介紹,有需要的朋友可以參考一下2013-04-04
php遞歸函數(shù)三種實(shí)現(xiàn)方法及如何實(shí)現(xiàn)數(shù)字累加
實(shí)現(xiàn)遞歸函數(shù)有哪些方法呢?如何用遞歸函數(shù)實(shí)現(xiàn)數(shù)字累加?這篇文章就主要介紹php遞歸函數(shù)三種實(shí)現(xiàn)方法及如何實(shí)現(xiàn)數(shù)字累加,需要的朋友可以參考下。2015-08-08
php解析url并得到url中的參數(shù)及獲取url參數(shù)的四種方式
本文給大家介紹php解析url并得到url中的參數(shù)及獲取url參數(shù)的四種方式,涉及到將字符串參數(shù)變?yōu)閿?shù)組,將參數(shù)變?yōu)樽址南嚓P(guān)知識(shí),本文代碼簡(jiǎn)單易懂,感興趣的朋友一起看看吧2015-10-10
WordPress中獲取指定分類及其子分類下的文章數(shù)目
這篇文章主要介紹了WordPress中獲取指定分類及其子分類下的文章數(shù)目的方法,文中總結(jié)了一些相關(guān)內(nèi)置函數(shù)的使用,需要的朋友可以參考下2015-12-12
不使用php api函數(shù)實(shí)現(xiàn)數(shù)組的交換排序示例
這篇文章主要介紹了不使用php api函數(shù)實(shí)現(xiàn)數(shù)組的交換排序示例,需要的朋友可以參考下2014-04-04

