在我以前的申请中,我有一堆个人资料位于:http://www.example.com/profile/12312534
但是我的新应用程序不再具有这些配置文件。是否有301 Redirect
规则可以处理每个看似http://www.example.com/profile/*
的请求?
网站管理员工具目前向我展示了数百种我想补救的404。
答案 0 :(得分:1)
尝试此规则:
RewriteEngine On
RewriteRule ^profile/.*$ / [L,R=301,NC]
这会将每个/profile/*
请求重定向到您的主路径/
,R = 301(永久重定向),从而处理您的SEO排名。
更新:使用RedirectMatch
:
RedirectMatch 301 ^/profile/ /
答案 1 :(得分:0)
使用mod_alias:
RedirectMatch 301 ^/profile/ /