我目前在 .htaccess 文件中重写索引 url 时遇到问题,我知道我是否使用
RewriteRule ^profile/([^/]*)/?$ /profile.php?x=$1 [L]
我将能够使用 www.example.com/profile/get 或 www.example.com/profile/get/ (带或不带斜杠)
但我想 www.example.com/get 到目前为止我所拥有的是
RewriteRule ^([^/]*)\/$ /index.php?x=$1 [L]
但如果我放一个 ? 在 $ 它错误之前欢迎任何答案