标签: .htaccess url url-redirection
我正在使用Redirect指令将短URL重定向到.htaccess文件中的特定URL。 例如: - 重定向/你好http://hello.com
如何将两个网址重定向到同一网址? 例如: - 重定向/ hello1 / hello2 http://hello.com
答案 0 :(得分:1)
您可以将RedirectMatch用于正则表达式功能:
RedirectMatch
RedirectMatch ^/(hello1|hello2) http://hello.com