我正在尝试在Nginx中将/anything/index.php重写为/anything/。我试过了,但什么都没有用。有人能帮帮我吗?
发布于 2013-09-03 11:07:05
像这样怎么样?
rewrite ^/(.*)/index.php /$1/ last;
https://stackoverflow.com/questions/15584522
相似问题