Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在我的 htaccess 中使用以下指令从我的 uri 中删除尾部斜杠以防止重复内容。然而,这些指令也会删除任何可能存在的查询字符串。
RewriteCond %{HTTP_HOST} ^(www.)?mydomain\com$ [NC] RewriteRule ^(.+)/$ http://www.mydomain.com/$1 [R=301,L]
我想知道如何从我的 URI 中删除一个潜在的斜杠,同时也保留查询字符串。
有一个RewriteRule选项标志:QSA.
RewriteRule
QSA
将原始请求 URL 中的任何查询字符串附加到在重写目标中创建的任何查询字符串