84669 人が学習中
152542 人が学習中
20005 人が学習中
5487 人が学習中
7821 人が学習中
359900 人が学習中
3350 人が学習中
180660 人が学習中
48569 人が学習中
18603 人が学習中
40936 人が学習中
1549 人が学習中
1183 人が学習中
32909 人が学習中
比如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');