Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 WordPress 中创建了一个网站。对于我的网站,我添加了 SSL 证书。在添加 SSL 之前它工作正常。但添加 SSL 后,我的页面显示:
Not Found The requested URL ... was not found on this server.
没有 https(我的意思是 http)页面可以正常工作,但是使用 https 我会出错。
我也安装了一个插件 wordpress-https。
我认为问题出在一个非常简单的地方:
今天的大多数网络服务器都使用控制面板来管理网站的流量(数据库、请求等)。
现在,在您的用户中注册的每个域都在 CP 中,您有一个文件public_html夹和一个private_html文件夹。
public_html
private_html
该public_html文件夹是您使用的常规(默认)文件夹,它指向http:// 该private_html文件夹是您要查找的安全连接文件夹,它指向https://
所以你需要做的就是在https://private_html的指针文件夹中重新安装 wordpress
这应该适合你:)