使用 htaccess 进行批量重定向

mass redirect using htaccess

我尝试使用 .htaccess 来重定向所有 url 如:

http://example.com/?view-RANDOMNUMBER (ex. http://example.com/?view-1505)

转到如下页面:

http://example.com/test-page.php

拜托,你能帮帮我吗?

谢谢

br0k3n

您可以使用这个 .htaccess :

RewriteEngine on
RewriteCond %{QUERY_STRING} ^view-\d+$ [NC]
RewriteRule ^$ test-page.php? [R,L]

如果您需要在 test-page.php 中使用 view-RANDOMNUMBER,请改用

RewriteRule ^$ test-page.php [R,L]

没有最后 ?.
如果您希望 link 在浏览器中不发生变化,请使用 [L] 代替 [R,L]