>  기사  >  백엔드 개발  >  nginx rewrite 重定向有关问题

nginx rewrite 重定向有关问题

WBOY
WBOY원래의
2016-06-13 12:08:12898검색

nginx rewrite 重定向问题?
https://www.123.com/770422332/index.php    =>    http://www.123.com/index.php?id=770422332

我想怎么变化该怎么写rewrite

location / {
     rewrite ^/(/d+)\/index\.php$ /index.php?id=$1 last;
}

我怎么写不行~不知道错在哪里~帮忙看下谢谢~!
------解决思路----------------------
https://www.123.com/770422332/index.php
你这个是啥规则啊?
https://www.123.com/index/770422332
=>
 rewrite ^/index\/(/d+)$ /index.php?id=$1 last;
------解决思路----------------------

<br /><br />rewrite "^/(/d+)/index.php$" /index.php?id=$1 last;<br /><br />

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.