84669 personnes étudient
152542 personnes étudient
20005 personnes étudient
5487 personnes étudient
7821 personnes étudient
359900 personnes étudient
3350 personnes étudient
180660 personnes étudient
48569 personnes étudient
18603 personnes étudient
40936 personnes étudient
1549 personnes étudient
1183 personnes étudient
32909 personnes étudient
比如http://www.baidu.com/dd/index.php/rs/sol这个url需要实现隐藏index.php,基于nginx服务器。如何实现?网上很多帖子试过都不行。现在想知道怎么匹配出题目中的参数。
闭关修行中......
如果只是想提取的话,可以用这个正则:
(?<=dd)/.*
但是如果是为了在nginx上用,做地址的rewrite的话,应该这么写:
rewrite ^/dd/(.*)$ /$1 permanent;
/^http://www.baidu.com/dd(.+)$/
location / { if ($request_filename ~ "favicon\.ico$") { break; } if ( -e $request_filename ) { break; } if ( !-e $request_filename ) { rewrite ^.*$ /index.php last; } }
不用正则多好,直接explode('index.php','http://www.baidu.com/dd/index.php/rs/sol');
如果只是想提取的话,可以用这个正则:
但是如果是为了在nginx上用,做地址的rewrite的话,应该这么写:
不用正则多好,直接explode('index.php','http://www.baidu.com/dd/index.php/rs/sol');