【发布时间】:2023-03-12 14:08:01
【问题描述】:
需要这样的http://example.net/tags/index.php?tag=anytag, 做出这样的http://example.net/tags/anytag 在做
RewriteEngine On
RewriteCond %{QUERY_STRING} ^tag=(.*)$ [NC]
RewriteRule ^tags/index.php$ /tags/$1 [NC,L,R=301]
不工作
【问题讨论】: