使用htaccess重定向类似于
的网址的301重定向规则是什么domain.com/community/783-anystring-string/profile
到
domain.com/community /
或
任何匹配此类格式的网址
domain.com/community/123-anystring-string /...
到
domain.com/community /
基本上我想重定向任何网址domain.com/community/(用数字开始)-string ...
到domain.com/community /
答案 0 :(得分:0)
您想要使用mod_rewrite
Options +FollowSymLinks
RewriteEngine On
RewriteRule ^community/[0-9]* /community [R=301,L]
我想。这可能行不通,我现在无法测试:/