htaccess重写

发布于 2024-10-26 21:51:50 字数 377 浏览 4 评论 0原文

我已经使用 CMS 重建了一个网站,我想让旧的 url 指向新页面。我遇到了问题,因为旧网址如下所示:?secc=country_club。例如,domain.com?secc=country_club

我想为每个网址制定一个规则,或者将 ?secc=country-club 重写为 country-club

这是我尝试过的,没有任何成功:

RewriteRule ^secc-([^-]*)$ /?secc=$1 [L]

我认为这与? 另外,如果有帮助的话

,我正在使用 joomla 并且我有 sh404sef。

I've rebuilt a site using a CMS and I want to make the old urls point to the new pages. I'm having trouble because the old URL looks like this: ?secc=country_club. For instance, domain.com?secc=country_club.

I would like to either have a rule for each url or have it rewrite the ?secc=country-club to just country-club

This is what I have tried, without any success:

RewriteRule ^secc-([^-]*)$ /?secc=$1 [L]

I think it has something to do with the ? in the url

Also if it helps, I am using joomla and I do have sh404sef.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

旧话新听 2024-11-02 21:51:50
RewriteEngine On
RewriteBase /
RewriteCond %{QUERY_STRING} ^secc=(.+)$
RewriteRule ^(.*) %1? [R,L]

这会将 http://example.com/?secc=MYPAGE 重定向到 http://example.com/MYPAGE

RewriteEngine On
RewriteBase /
RewriteCond %{QUERY_STRING} ^secc=(.+)$
RewriteRule ^(.*) %1? [R,L]

This will redirect http://example.com/?secc=MYPAGE to http://example.com/MYPAGE

你另情深 2024-11-02 21:51:50

我认为你的意思是在 ^secc 之后写 '=':

RewriteEngine on
RewriteRule ^?secc=(.*)$ "$1" [QSA]

I think you meant to write '=' after ^secc:

RewriteEngine on
RewriteRule ^?secc=(.*)$ "$1" [QSA]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文