我有 3 个网址,我想重写:
`health.php?news=apple` to `/health/news/apple`
health.php?info=apple
到/health/info/apple
health.php?articles=apple
_/health/articles/apple
为此,我在给定的代码下面写:
RewriteRule ^health health.php
RewriteRule health/news/(.*) /health.php?news=$1 [NC,QSA]
RewriteRule health/info/(.*) /health.php?info=$1 [NC,QSA]
RewriteRule health/articles/(.*) /health.php?articles=$1 [NC,QSA]
但这不起作用。请帮我。
提前致谢。