我需要将用户从root重写为index.php,因为现在在谷歌分析中我看到2行:
/ ............. 112
/index.php ............. 34
如何将打开http://example.com和http://example.com/的用户重定向到http://example.com/index.php ?
答案 0 :(得分:0)
这样对我有用:
location = / {
return 301 /index.php;
}