首页 > 解决方案 > 从 Htaccess 重定向 URL 中的 Tailing Dash

问题描述

我正在尝试使用 mod rewrite 或重定向 301 重定向包含在某些 URL 末尾的一些破折号。

有许多 URL 受此结构影响。

http://example.com/nested/any-name-.html

to 

http://example.com/nested/any-name.html

我发现了这一点,但它最后不适用于 .html 。

RewriteRule ^(.*)-$ http://example.com/nested/$1 [L,R=301]

标签: .htaccessredirecturl-rewriting

解决方案


您可以使用:

RewriteRule ^(.+)-(\.html)?$ $1$2 [L,R=301]

推荐阅读