.htaccess:将短链接重定向到主URL

时间:2017-10-13 08:53:22

标签: php .htaccess redirect mod-rewrite

我有多个这样的链接:

www.example.com/my_folder/some_title/12
www.example.com/my_folder/any_title/56
www.example.com/my_folder/something/32

为了方便我的用户,我想创建这样的短链接:

www.example.com/12
www.example.com/56
www.example.com/32

表示:如果我输入www.example.com/12,我希望它重定向到www.example.com/my_folder/any_placeholder/12

意味着:如果网址只有一个数字作为路径,(301?)会将其重定向到my_folder/any_placeholder/12

有人知道怎么做吗?

1 个答案:

答案 0 :(得分:0)

您可以在站点根目录.htaccess:

中使用此规则执行此操作
RewriteEngine On   

RewriteRule ^\d+/?$ my_folder/any_placeholder/$0 [L]