您好,登錄后才能下訂單哦!
這期內容當中小編將會給大家帶來有關使用nginx怎么重定向地址,文章內容豐富且以專業的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。
1、假設要把webroot/static/index.html訪問重定向到static/index.html
例如當我們通過瀏覽器訪問http://192.168.11.210/webroot/static/index.html,實際訪問的是web目錄下面的static/index.html文件,也及去掉了webroot這個目錄,使用alias
location ^~ /webroot/ { alias /data/www/web/WebContent/; }
注意:
1. 使用alias時,目錄名后面一定要加"/"。
2. alias可以指定任何名稱。
3. alias在使用正則匹配時,必須捕捉要匹配的內容并在指定的內容處使用。
4. alias只能位于location塊中。[/warning]
http://192.168.11.210/webroot/test/static/index.html
location ^~ /webroot/test/ { alias /data/www/web/WebContent/; }
這樣也是可以的,最終訪問的文件跟上面是一樣的。
2、把對webroot/static/index.html的訪問重定向到web目錄下面的test目錄下
location ~ ^/webroot/ { root /data/www/web/WebContent/test/; }
http://192.168.11.210/webroot/static/index.html 實際訪問的是web目錄下testwebroot/static/index.html
及使用root一般是把訪問目錄重定向到某個目錄下,但是訪問的路徑必須在重新定位的目錄下
注意區分跟alias的區別
轉載一個:
訪問域名
www.adc.com/image 自動跳轉到 www.adc.com/make/image
這個如何寫
這種需求有多種方法可以實現:
1. 利用Nginx rewrite 內部跳轉實現:
location /image { rewrite ^/image/(.*)$ /make/image/$1 last; }
2.利用alias映射
location /image { alias /make/image; #這里寫絕對路徑 }
3.利用root映射:
location /image { root /make; }
4.利用nginx的permanent 301絕對跳轉實現
location /image { rewrite ^/image/(.*)$ http://www.adc.com/make/image/$1; }
5.判斷uri實現
if ( $request_uri ~* ^(/image)){ rewrite ^/image/(.*)$ /make/image/$1 last; }
上述就是小編為大家分享的使用nginx怎么重定向地址了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。