如题,希望客户输入 https://aaa.com 后 自动跳转 https://aaa.com/bbs/index.php ,默认引导客户去论坛,这个怎么写呀,只要引导一次就可以了。谢谢!
1
jpacg May 17, 2019
location / {
alias bbs/; |
2
sheeta May 17, 2019
location / {
return 302 https://$host/bbs/index.php; } |
3
ethsol May 17, 2019
首页弹个框引导,nginx 配置不能实现“只要引导一次”
|