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

溫馨提示×

溫馨提示×

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

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

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

舒兰市| 铁力市| 威海市| 治多县| 资阳市| 隆回县| 太和县| 千阳县| 突泉县| 陆良县| 崇文区| 南充市| 横山县| 梅河口市| 潢川县| 浮山县| 凤冈县| 宣武区| 河曲县| 平果县| 思南县| 甘谷县| 屏东县| 西吉县| 含山县| 驻马店市| 屯昌县| 大厂| 博乐市| 宣威市| 大冶市| 互助| 唐河县| 武陟县| 卢氏县| 南和县| 北碚区| 星子县| 临泽县| 微博| 贵溪市|