规则是:
RewriteRule ^r/([^/.]+)/?$ generateIssuePage.php?r=$1 [L]
当浏览器请求 myip.com/r/thing 时,它应该重定向到 myip.com/r/generateIssuesPage.php?r=thing。
如果我只输入 www.myip.com/r/generateIssuesPage.php?r=thing,它工作正常。但是如果我请求 www.myip.com/r/thing,我会得到 404。它有什么问题?