htaccess重写
我已经使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这会将 http://example.com/?secc=MYPAGE 重定向到 http://example.com/MYPAGE
This will redirect http://example.com/?secc=MYPAGE to http://example.com/MYPAGE
我认为你的意思是在 ^secc 之后写 '=':
I think you meant to write '=' after ^secc: