nginx重定向如何配置
时间: 2023-09-11 13:03:51 浏览: 200
Nginx重定向的配置实例
nginx重定向的配置可以通过使用server块和location块来实现。以下是几种常见的nginx重定向配置方法:
1. 将一个URL重定向到另一个URL:
```
server {
listen 80;
server_name localhost;
location /abc {
rewrite ^/abc/a/1.html$ http://localhost/ccc/bbb/2.html permanent;
}
}
```
这会将从"http://localhost/abc/a/1.html"请求重定向到"http://localhost/ccc/bbb/2.html"。
2. 将请求访问脚本重定向到错误页面:
```
server {
listen 80;
server_name localhost;
location ~* \.sh$ {
return 403;
}
}
```
这会将以".sh"结尾的请求重定向到403错误页面。
3. 将HTTP重定向到HTTPS:
方法一:
```
server {
listen 80;
server_name localhost;
location / {
return 301 https://localhost;
}
}
```
这会将所有的HTTP请求重定向到HTTPS的"https://localhost"。
方法二:
```
server {
listen 80;
server_name localhost;
location / {
rewrite (.*) https://localhost permanent;
}
}
```
这也会将所有的HTTP请求重定向到HTTPS的"https://localhost"。
请根据你的需求选择适合的配置方法,并在nginx的配置文件中进行相应的修改。<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* *2* *3* [Nginx重定向配置](https://blog.csdn.net/qq_38472635/article/details/106791874)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_1"}}] [.reference_item style="max-width: 100%"]
[ .reference_list ]
阅读全文