如何配置 Apache 来重写以下条件?

如何配置 Apache 来重写以下条件?

我想让 Apachemod_rewrite按照如下方式工作:

www.mysite.example/g/abcde   "redirect" to www.mysite.example/mypage.php?code=abcde&mode=g

www.mysite.example/v/abcde   "redirect" to www.mysite.example/mypage.php?code=abcde&mode=v

我的问题是:

  1. 如何在我的 Ubuntu 18.04 安装中配置 mod_rewrite?

  2. 该配置该怎么写?

答案1

我解决了:

RewriteRule ^g/([A-Za-z0-9-/_]+)?$ /g.php?param1=$1&%{QUERY_STRI$

相关内容