我最近购买了synology ds918 +,我想创建一个网站,我使用网站和apache 2.4软件包创建了它,但是我希望我的网站位于https而不是http上,并且希望能够自动当我输入到我的网站的链接时,在https,443端口上。但是没有找到任何清晰的教程,我该怎么做?
我遇到了同样的问题,找到了一本好手册。您需要的是网页根目录中的.htaccess文件,其内容如下:
#turn on url rewriting
RewriteEngine On
#reroute http to https and website.com to www.website.com
RewriteCond %{HTTP_HOST} ^website\.com$ [NC]
RewriteRule ^(.*)$ http://www.website.com/$1 [R=301,L]
RewriteCond %{SERVER_PORT} !^443$
RewriteRule (.*) https://%{HTTP_HOST}/$1 [R=301,L]
只需用您的名字替换“ website”和“ .com”。
您还可以添加以下内容:
ErrorDocument 404 /404.htm
希望有所帮助