【发布时间】:2015-11-28 22:51:06
【问题描述】:
我需要重定向
http://example.com/page/?Id=1253-23098-
到
http://example.com/page/1253-23098
此重定向还包括从查询字符串末尾删除“-”。
我所做的是
RewriteEngine On
RewriteCond %{REQUEST_URI} ^/page/$
RewriteCond %{QUERY_STRING} ^Id=([0-9\-\0-9]*)$
RewriteRule ^(.*)$ http://example.com/page/%1? [L,R=301]
将我重定向到
http://example.com/page/1253-23098-
我需要从我的查询字符串中删除“1253-23098”之后的任何内容。
我在过去 3-4 小时内搜索了它,但似乎没有任何效果。 任何帮助表示赞赏。
【问题讨论】:
标签: .htaccess redirect url-rewriting query-string url-redirection