301使用htaccess

时间:2017-02-10 16:05:00

标签: apache .htaccess redirect mod-alias

情景: Joomla + SH404

组件的先前版本正在添加" / registration"到活动页面网址,将其重定向到相关的注册表单。

新版本将表单集成到同一个事件页面中。 问题是应用程序仍然重定向到上一个网址,此时我无法重新编码。

所以,我应该使用htaccess

删除SEO Url的最后一部分

实施例: http://mydomain.ext/category/this-is-my-page/registration

应该成为

http://mydomain.ext/category/this-is-my-page

我试过htaccess:

//301 Redirect Entire Directory
RedirectMatch 301 /registration(.*) /$1

但它会重定向到主页

任何提示?

1 个答案:

答案 0 :(得分:0)

这个对我很好:

RewriteRule ^(。*)/ registration / $ 1 [R = 301,L]

感谢Ellegi