中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

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

仙居县| 太谷县| 额尔古纳市| 赤壁市| 洮南市| 青海省| 石屏县| 哈密市| 全州县| 英超| 上林县| 太和县| 迁西县| 桂阳县| 永城市| 楚雄市| 武鸣县| 万全县| 阳江市| 攀枝花市| 禄劝| 泉州市| 湘乡市| 堆龙德庆县| 博爱县| 武义县| 阳泉市| 都安| 华阴市| 黎平县| 乐山市| 青阳县| 突泉县| 小金县| 苏尼特左旗| 南陵县| 和硕县| 雅江县| 尚义县| 祁阳县| 敦煌市|