91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

Yii2_nginx怎樣實現url重寫

發布時間:2021-11-15 15:54:30 來源:億速云 閱讀:275 作者:柒染 欄目:大數據

這篇文章給大家介紹Yii2_nginx怎樣實現url重寫,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

'urlManager' => [
            //'urlFormat' => 'path',
            'class'=>'yii\web\UrlManager',
            'enablePrettyUrl' => true,
            'showScriptName' => false,//false 表示隱藏index.php
            'rules'=>[
                "/cn.html"=>"/cn/tv/index",
                "/<id:\w+>/{0,1}"=>"/tv/cate",
                "/cn/<id:\w+>/{0,1}"=>"/cn/tv/cate",
                "/tv/<id:(.*)>.html"=>"/tv/detail",
                "/cn/tv/<id:(.*)>.html"=>"/cn/tv/detail",
            ]
        ],

下面是nginx 的配置

server {
    listen       80;
    server_name  www.xx.com xxx.com;
    root   /www/xx/web;
    index  index.php index.html index.htm;
	location / {
		index  index.html index.php;
		if (!-e $request_filename){
			rewrite ^/(.*) /index.php last;
		}
	}
	if ($host != 'www.xx.com') {
		rewrite ^/(.*)$ https://www.xxx.com/$1 permanent;
	}
	if ($http_x_forwarded_proto != "https"){
            rewrite  ^/(.*)$  https://$host/$1 permanent;
	}
	location ~ \.php(.*)$ {
        fastcgi_pass   php:9000;
        include        fastcgi-php.conf;
		fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
		include        fastcgi_params;
	}
}

server {
    listen       443;
    server_name  www.xx.com;
    root   /www/xx/web;
    index  index.php index.html index.htm;
	ssl on;
	ssl_certificate /ssl/www.xx.com/xx.pem;
    ssl_certificate_key /ssl/www.xx.com/xxx.key;
	location / {
		index  index.html index.php;
		if (!-e $request_filename){
			rewrite ^/(.*) /index.php last;
		}
	}
	location ~ \.php(.*)$ {
        fastcgi_pass   php:9000;
		fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
        include        fastcgi-php.conf;
        include        fastcgi_params;
	}
	
}

這樣配置即可

關于Yii2_nginx怎樣實現url重寫就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

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

AI

连江县| 朝阳县| 梅州市| 涞水县| 凤凰县| 精河县| 富顺县| 金山区| 涞源县| 莱阳市| 安图县| 依安县| 玉门市| 滁州市| 马山县| 财经| 宝应县| 弥渡县| 和政县| 绥芬河市| 潼南县| 新野县| 明溪县| 靖宇县| 长治县| 元朗区| 绥江县| 南澳县| 纳雍县| 宣城市| 乌鲁木齐县| 昌乐县| 湄潭县| 霍林郭勒市| 收藏| 汤阴县| 青阳县| 静海县| 武隆县| 治多县| 阜新市|