gpt4 book ai didi

wordpress - 强制 HTTP 除了 htaccess 中的特定页面(SEO)

转载 作者:塔克拉玛干 更新时间:2023-11-03 02:29:38 25 4
gpt4 key购买 nike

我正在尝试对电子商务网站进行搜索引擎优化。该网站在 Wordpress 平台上使用 WooCommerce 插件。此外,它还有一个 authorize.net 网关,允许用户直接在现场支付。这意味着该站点需要 SSL 证书。

出于 SEO 的原因,我希望/需要网站在 HTTP 协议(protocol)上运行,但支付网关页面(/cart、/my-account、/checkout 等)除外,这些页面应指向HTTPS协议(protocol)。

目前我有以下代码:

RewriteCond %{HTTPS} on
RewriteCond %{REQUEST_URI} !^/cart/
RewriteCond %{REQUEST_URI} !^/checkout/

RewriteRule (.*) http://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]

使用这段代码我遇到了一些问题。首先是,当我访问“购物车”页面时,它不会重定向到 https,但是结帐页面会。

其次,当结帐页面加载时,它不会加载我托管的一些内容(Css、JS、img 等)。我猜这是因为它们没有在相同的 https 协议(protocol)上运行。我该如何解决?

第三,当我使用 https://mydomain.com/somepage 手动访问站点时,它不是 301 将我重定向到 http://mydomain.com/somepage版本。

所有这些让我相信我上面的代码编写不正确。有人有什么想法吗? SEO 很重要,因此唯一应该显示的页面是 http://页面(我指定的页面除外)。 https 版本被 301 重定向到 http://

这是我的 htaccess 文件现在的样子 -

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress

RewriteCond %{HTTPS} on
RewriteCond %{REQUEST_URI} !^/cart/
RewriteCond %{REQUEST_URI} !^/checkout/

RewriteRule (.*) http://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]

<FilesMatch "^(wp-comments-post\.php)">
Order Allow,Deny
Deny from xx.xxx.xx.
Deny from xx.xxx.xx.
Deny from xx.xxx.xx.
Allow from all
</FilesMatch>

最佳答案

将 SSL/非 SSL 重定向放在 您的 wordpress 规则之前。您还需要规则,不仅要将重定向到 HTTPS,还要将 HTTPS 重定向到HTTP:

RewriteCond %{HTTPS} on
RewriteCond %{REQUEST_URI} !^/cart/
RewriteCond %{REQUEST_URI} !^/checkout/
RewriteRule (.*) http://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]

RewriteCond %{HTTPS} off
RewriteRule ^(cart|checkout)/ https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]


# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress

关于wordpress - 强制 HTTP 除了 htaccess 中的特定页面(SEO),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19262412/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com