Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有两种类型的链接需要重定向。
链接是顶级的,例如example.com/p123456234 ,但现在应该是clients.example.com/p123456234。
有许多链接遵循相同的顺序(字母然后是 9 个数字),我正在寻找一个通配符重定向来一次处理所有这些,而不必手动输入它们。
RewriteRule ^([a-z]{1})([0-9]{9})$ http://clients.example.com/$1$2 [R=301,L]
此处的通配符将限制每种类型(字母和数字)的字符数。如果匹配,它将使用 301 重定向转到新目的地。