我可以知道如何在.htaccess文件中设置域名。 域名为https://form.example.my/
下面是我在.htaccess文件中设置域名的方法,但是该域名不起作用。
# BEGIN GD-SSL
<IfModule mod_rewrite.c>
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteCond %{HTTP_USER_AGENT} ^(.+)$
RewriteCond %{SERVER_NAME} ^form\.example\.my$ [OR]
RewriteCond %{SERVER_NAME} ^www\.form\.example\.my$
RewriteRule .* https://%{SERVER_NAME}%{REQUEST_URI} [R=301,L]
Header add Strict-Transport-Security "max-age=31536000"
Header set X-XSS-Protection "1; mode=block"
Header always append X-Frame-Options SAMEORIGIN
Header set X-Content-Type-Options nosniff
</IfModule>
# END GD-SSL