在 processwire htaccess 中查找这些行
#------------------------------------------------ -------------------------------------------------- ------------------------------------------
如果您只想允许 HTTPS,请取消注释下面的 RewriteCond 和 RewriteRule 行。
#------------------------------------------------ -------------------------------------------------- ------------------------------------------
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [L]
#------------------------------------------------ -------------------------------------------------- ------------------------------------------
如果您只想允许 HTTP 使用下面的代码
#------------------------------------------------ -------------------------------------------------- ------------------------------------------
RewriteCond %{HTTPS} on
RewriteRule (.*) http://%{HTTP_HOST}%{REQUEST_URI} [L]