gpt4 book ai didi

php - 在 wordpress 站点中使用 SSL

转载 作者:太空宇宙 更新时间:2023-11-03 13:02:43 25 4
gpt4 key购买 nike

我想在我的 wordpress 网站上从 HTTP 转到 HTTPS。到目前为止,我已经完成了以下工作:

  1. 将 siteurl 和家庭地址更改为 https://www.example.com
  2. 在wp-config.php文件中添加

    define('FORCE_SSL_ADMIN', true);
    define('FORCE_SSL_LOGIN', true); // I read this was deprecated, but I was desperate
    /* That's all, stop editing! Happy blogging. */
  3. 在 .htaccess 中我有:

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteCond %{HTTPS} !=on
    RewriteRule ^https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>

所以现在我面临两个问题:1.css样式加载不出来2. 我无法访问 wp-admin 面板,出现错误 401 页面没有正确重定向

我尝试了很多东西,最后我真的需要你的帮助,谢谢!!!

编辑!!!!我删除了行定义('FORCE_SSL_ADMIN',真);定义('FORCE_SSL_LOGIN',真);

现在它找到了进入管理面板的方式,但仍然没有加载样式文件。

最佳答案

只需使用 Wordpress 插件,它会节省您的时间。

我个人使用这个: https://wordpress.org/plugins/wp-force-ssl/

关于php - 在 wordpress 站点中使用 SSL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41744809/

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