nginx重写规则
nginx重写规则
本人是一个新手,请教以下问题中$1$2的值从那传送过来,分别代表什么意思
- server {
- listen 8080;
- server_name www.a.cn www.b.cn www.c.cn .d.org .e.com f.com;
- server_name_in_redirect off;
- access_log /usr/local/nginx/logs/nginx/www.cn.access.log main;
- error_log /usr/local/nginx/www.cn.error.log;
- include proxy.conf;
- expires 1d;
- location /abc {
- if ( -d $request_filename ) {
- rewrite ^/(.*)([^/])$ http://$host/$1$2/ break;
- }
- index index.html;
- root html;
- }
- location ~* ^/(aa|bb|cc) {
- proxy_pass http://f.com;
- break;
- }
- location ~* ^/.*\.apk {
- root html;
- }
复制代码请教:
location ~* ^/.*\.apk {
root html;
}
代表什么意思
if ( -d $request_filename ) {
rewrite ^/(.*)([^/])$ http://$host/$1$2/ break;
}
代表什么意思
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
......................................