我面臨的問題是 http 到 https 重定向不起作用。我目前的設定是清漆 apache。我正在使用 apache 來終止 SSL。按照本指南(https://bash-prompt.net/guides/apache-varnish/)執行此操作(也遵循該指南中的“ERR_TOO_MANY_REDIRECTS錯誤”部分,因為我收到了太多重定向錯誤)。Varnish 在埠 80 上運行。Apache 在埠 8181 上運行并終止 SSL。嘗試在 htaccess 中添加重定向規則,但它不起作用。將以下行添加到 wp-config
if ($_SERVER['HTTP_X_FORWARDED_PROTO'] == 'https') {
$_SERVER['HTTPS'] = 'on';
}
if ( !isset( $_SERVER['HTTPS'] ) ) {
$_SERVER['HTTPS'] = 'on';
}
define( 'WP_HOME', 'https://example.com' );
define( 'WP_SITEURL', 'https://example.com' );
我當前的清漆 vcl 配置:
vcl 4.0;
# Default backend definition. Set this to point to your content server.
backend default {
.host = "127.0.0.1";
.port = "8181";
}
sub vcl_recv {
if (req.url ~ "wp-admin|wp-login") {
return (pass);
}
sub vcl_backend_response {
# Happens after we have read the response headers from the backend.
#
# Here you clean the response headers, removing silly Set-Cookie headers
# and other mistakes your backend does.
}
sub vcl_deliver {
# Happens when we have all the pieces we need, and are about to send the
# response to the client.
#
# You can do accounting or modifying the final object here.
}
我的 htaccess 配置:
SetEnvIf X-Forwarded-Proto "https" HTTPS=on
Header append Vary: X-Forwarded-Proto
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{HTTPS} !=on
RewriteCond %{HTTP:X-Forwarded-Proto} !https [NC]
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
</IfModule>
# BEGIN WordPress
# The directives (lines) between "BEGIN WordPress" and "END WordPress" are
# dynamically generated, and should only be modified via WordPress filters.
# Any changes to the directives between these markers will be overwritten.
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
我幾乎嘗試了所有教程。甚至嘗試通過 varnish vcl 配置本身將 HTTP 重定向到 HTTPS,但似乎沒有任何效果。請幫忙!
uj5u.com熱心網友回復:
將所有用戶從 HTTP 重定向到 HTTPS
您可以使用以下任何解決方案。您只需要使用其中一個或所有三個取決于您。
1.PHP解決方案
if(!isset($_SERVER['HTTPS']) || strtolower($_SERVER['HTTPS']) != 'on') {
header('Location: https://www.yourdomain.com');
exit;
}
2. Apache .htaccess 解決方案
RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://www.yourdomain.com/$1 [R,L]
3.Nginx 解決方案
server {
listen 80 default_server;
server_name _;
return 301 https://$host$request_uri;
}
1. Varnish / Wordpress config - 手動設定解決方案
https://betterprogramming.pub/set-up-varnish-cache-for-wordpress-8e2ac92ce347
2. Varnish / Wordpress config - Wordpress 插件解決方案
https://en-gb.wordpress.org/plugins/vcaching/
uj5u.com熱心網友回復:
對于另一個 php 解決方案,您也可以在 public/index.php 的開頭使用它,這在您的情況下應該更有效
if($_SERVER['SERVER_PORT'] != 443) {
header('Location: https://www.yourdomain.com');
exit;
}
echo 'Your current server port is = '.$_SERVER['SERVER_PORT'].'<br />';
轉載請註明出處,本文鏈接:https://www.uj5u.com/ruanti/336973.html
標籤:php WordPress的 .htaccess https 漆
