我正在尝试将一个wordpress网站用于HTTPS,但我尝试的一切都给了我一个重定向循环.我编辑了htaccess,我用
PHP设置它,我甚至下载了一个wordpress插件来转换它,但每个方法都给我一个重定向循环错误.我知道有些东西必须将我的https重定向到http,但我不知道是什么.这是我的.htaccess文件,其中没有任何HTTPS设置:
# 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
这里是我试图在头文件PHP文件中使用的PHP将页面转换为HTTPS:
if($_SERVER["HTTPS"] != "on") { header("Location: https://" . $_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"]); exit(); }
您不需要在.htaccess或PHP中进行全面重定向.转到信息中心>>设置并将您的网址更改为https.然后保存永久链接.
原文链接:https://www.f2er.com/php/445232.html您可能希望查找/替换帖子/页面内容,媒体URL等中的任何http URL,因此您不会获得从http到https的重定向.试试interconnectit.com WordPress Serialized PHP Search Replace Tool
在https工作之后,使用Firebug与Firefox,或使用Chrome或Safari或IE中的开发人员工具查看是否从任何主题文件中的非https URL获得任何“不安全内容”错误.
您可能需要更改为CSS文件中图像的相对路径,即background-image:url(http://example.com/themes/wp-content/theme/images/image.jpg)到background-image:url (图像/ image.jpg的)
并且,您可能需要从PHP主题文件中的绝对路径中删除http,即将“http://example.com/image.jpg”更改为“//example.com/image.jpg”;这将允许您的资源默认为https.