我很绝望......这个测试规则在这里工作得很好,所以服务器肯定配置正确。它按预期刷新页面。
RewriteRule /hello.htm /index.htm [R]
但我试图简单地将页面从 刷新example.com/123
到example.com/index.htm?id=123
。我以为我可以这样做:
RewriteRule ^/([0-9]+)$ /index.htm?id=$1 [R]
但它只是行不通。一直得到 404,检查了我的日志,那里没有任何用处。
我对此很害怕,希望能得到一些帮助。