.htaccess 用于手动添加子域的 SSL 证书
.htaccess SSL certificate for manually added subdomain
我的 .htaccess 文件在我的主域 (www.domain.com) 中工作:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
RewriteCond %{HTTPS} !=on
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
但是,对于我的子域 www.domain.com/subdomain/,图标开始时是安全挂锁,但随后变为不安全。我在 .htaccess 文件中使用它:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
关于我应该在子域文件中放入什么有什么想法吗?
想通了,有一个图像使用外部 URL。
我的 .htaccess 文件在我的主域 (www.domain.com) 中工作:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
RewriteCond %{HTTPS} !=on
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
但是,对于我的子域 www.domain.com/subdomain/,图标开始时是安全挂锁,但随后变为不安全。我在 .htaccess 文件中使用它:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
关于我应该在子域文件中放入什么有什么想法吗?
想通了,有一个图像使用外部 URL。