【发布时间】:2013-03-13 03:31:10
【问题描述】:
我正在尝试在 Nginx 中将 /anything/index.php 重写为 /anything/。我有必应但没有任何帮助。谁能帮帮我。
【问题讨论】:
标签: nginx
我正在尝试在 Nginx 中将 /anything/index.php 重写为 /anything/。我有必应但没有任何帮助。谁能帮帮我。
【问题讨论】:
标签: nginx
这样的事情怎么样?
rewrite ^/(.*)/index.php /$1/ last;
【讨论】: