如题,想要实现 http://test.com/a/b 重定向到 http://test.com/?type=a&val=b 这样的实现,用的 apache 服务器,想要写一个 rewrite 实现这样的需求应该怎么写,谢谢大佬
1
defunct9 2023-04-07 14:33:24 +08:00
RewriteRule ^a/b$ results.php?type=a&val=b [QSA]
|
2
defunct9 2023-04-07 14:36:13 +08:00
RewriteRule ^([A-Za-z0-9]+)/([A-Za-z0-9]+) ?type=$1&val=$2 [QSA]
|