我正在尝试将一堆类似的URL重定向到首页,它们都以相同的字符串开头,但我没有为此找到样本。我怎么能做到这一点?
例子:
/quote-of-the-day-5/ /quote-of-the-day-4/ /quote-of-the-day-14/
我想重定向到根/
/
试试这个
RewriteEngine On RewriteRule ^quote-of-the-day-(.*)$ http://yourwebsite.com/ [R=301,L]