最近我做了我的网站之一SSL安全。 从那时起,我发现,如果我贴在网站上的网页在浏览器地址栏的一个,当页面尝试解析的网址,该网址获得错位和页面没有找到。 什么它总是出现做的是域和以下目录后删除斜线,所以
waynecbent.com/html/somefile.html
变为:
waynecbent.comhtml / somefile.html
起初我以为这是一些我的浏览器在做,但从那时起我就发现了这个发生在不同平台上的不同的浏览器。
我联系了自己的域名提供商(Namecheap),但他们说这是与主机的一个问题。
我对网站的配置如下:
<VirtualHost *:443>
ServerName www.waynecbent.com
DocumentRoot /home/<redacted>/public_html
SSLEngine on
SSLCertificateFile "/home/<redacted>/ssl/<redacted>.crt"
SSLCertificateKeyFile "/home/<redacted>/ssl/<redacted>.pem"
SSLCACertificateFile "/home/<redacted>/ssl/<redacted>_bundle"
</VirtualHost>
<VirtualHost *:443>
ServerName waynecbent.com
DocumentRoot /home/<redacted>/public_html
SSLEngine on
SSLCertificateFile "/home/<redacted>/ssl/<redacted>.crt"
SSLCertificateKeyFile "/home/<redacted>/ssl/<redacted>.pem"
SSLCACertificateFile "/home/<redacted>/ssl/<redacted>_bundle"
</VirtualHost>
没有人知道为什么这可能是?
谢谢,化Allasso