這篇文章主要介紹yii2怎樣隱藏index.php,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
為簡(jiǎn)陽(yáng)等地區(qū)用戶提供了全套網(wǎng)頁(yè)設(shè)計(jì)制作服務(wù),及簡(jiǎn)陽(yáng)網(wǎng)站建設(shè)行業(yè)解決方案。主營(yíng)業(yè)務(wù)為成都網(wǎng)站制作、做網(wǎng)站、簡(jiǎn)陽(yáng)網(wǎng)站設(shè)計(jì),以傳統(tǒng)方式定制建設(shè)網(wǎng)站,并提供域名空間備案等一條龍服務(wù),秉承以專業(yè)、用心的態(tài)度為用戶提供真誠(chéng)的服務(wù)。我們深信只要達(dá)到每一位用戶的要求,就會(huì)得到認(rèn)可,從而選擇與我們長(zhǎng)期合作。這樣,我們也可以走得更遠(yuǎn)!
yii2隱藏index.php的方法:首先打開(kāi)urlManager組件的配置;然后配置文件nginx.conf內(nèi)容;接著將項(xiàng)目域名的配置整體放在vhost目錄下;最后在入口文件的同級(jí)目錄下放置“.htaccess”文件即可。
yii2 url 重寫(xiě) 隱藏 index.php 方法
第一步 : 不管是 apache 還是 nginx ,想要隱藏 Index.php 文件,需要打開(kāi) urlManager 組件的配置,在進(jìn)行后續(xù)的操作

第二步 :
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]以上是“yii2怎樣隱藏index.php”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!
網(wǎng)站標(biāo)題:yii2怎樣隱藏index.php
網(wǎng)頁(yè)路徑:http://www.chinadenli.net/article38/gcscpp.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站收錄、外貿(mào)建站、軟件開(kāi)發(fā)、網(wǎng)站內(nèi)鏈、自適應(yīng)網(wǎng)站、靜態(tài)網(wǎng)站
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)