0

我正在使用这个 htaccess 代码在我的网站上隐藏 .html 扩展名,但是这样做时 addThis 共享插件不起作用。您可以在这里找到 addThis:https ://www.addthis.com/get/sharing

有什么解决方法吗?

RewriteBase /

RewriteEngine on
RewriteCond %{THE_REQUEST} \ /(.+/)?index(\.html)?(\?.*)?\  [NC]
RewriteRule ^(.+/)?index(\.html)?$ /%1 [R=301,L]

RewriteCond %{ENV:REDIRECT_STATUS} ^$
RewriteRule ^(.+)\.html$ /$1 [R=301,L]

RewriteCond %{SCRIPT_FILENAME}.html -f
RewriteRule [^/]$ %{REQUEST_URI}.html [QSA,L]
4

1 回答 1

1

目前无法汇总不同 URL 的共享计数:

http://support.addthis.com/customer/portal/questions/206634-can-i-total-share-counts-for-two-different-urls-short-and-full-for-the-same-content-

这不是重定向的问题,而是 addthis 代码的问题。

您应该从一开始就使用重定向代码。

于 2012-11-24T22:23:14.963 回答