剥离“&Itemid=XX”使用 .htaccess 超出我的 URL
我需要删除正在生成的 URL 的特定部分,并希望使用 .htaccess。
一些链接在 .html 后面附加了“&Itemid=XX”。
例子: http://www.site.com/conferences-and-events.html& ;Itemid=XX
XX 可以是一位数或四位数字,所以我想我需要一个通配符来表示该部分。我知道与使用 .htaccess 删除 URL 的某些部分相关的其他问题已经得到解答,但我似乎不知道如何删除我的特定字符串。任何帮助将不胜感激,并对冗余和密集表示歉意。
I need to strip out a certain part of my URLS being generated and want to use .htaccess.
Some links are being appended with "&Itemid=XX" after the .html.
Example:
http://www.site.com/conferences-and-events.html&Itemid=XX
XX could be one digit or four so I guess I need a wild card for that part. I know other questions have been answered related to stripping out certain parts of URLs using .htaccess but I can't seem to figure out how to get my specific string stripped out. Any help would be appreciated and sorry for being redundant and dense.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要使用 URL 重写 ,类似这样的东西应该工作;
说明:此正则表达式匹配任何内容 (
(.*)
),后跟&Itemid=
[1 到 4 位小数],后跟任何内容(另一个(. *)
),并将 ([R]
) 重定向到与第二个内容连接的第一个内容,从而取出&Itemid=xx
部分。You'll want to use URL rewriting for that, something like this should work;
Explanation: This regular expression matches anything (
(.*)
) followed by&Itemid=
[1 to 4 decimals], followed by anything (another(.*)
), and redirects ([R]
) to the first anything concatenated with the second anything, thus taking out the&Itemid=xx
part.