标签: nginx url-rewriting
我正在使用mvc patter做一个简单的url缩短。
我有这些规则,如您所见,模式是相同的。
rewrite ^/(\w+)$ /index.php?controller=url&random=$1 last; rewrite ^/(\w+)$ /index.php?controller=$1 last;
我该如何管理?