.htaccess - 排除一个域名 - 我可以让它变得更好吗?

时间:2017-07-25 21:16:56

标签: apache .htaccess ssl redirect server

我有2个域,主域中的.htaccess会影响第二个域。 我试着排除第二个域名,几小时后我想我已经完成了。

请检查第5和第6行

问题:我的代码是否存在?这可以吗?我可以做得更好吗?

### RewriteEngine On ###
<IfModule mod_rewrite.c>
RewriteEngine On
### http -> https ###
RewriteCond %{HTTP_HOST} ^(www\.)?SECOND-DOMAIN\.com$
RewriteRule ^.*$ '-' [L]
RewriteCond %{HTTPS} off
RewriteCond %{REQUEST_URI} !^/[0-9]+\..+\.cpaneldcv$
RewriteCond %{REQUEST_URI} !^/[A-F0-9]{32}\.txt(?:\ Comodo\ DCV)?$
RewriteCond %{REQUEST_URI} !^/\.well-known/acme-challenge/[0-9a-zA-Z_-]+$
RewriteRule (.*) https://FIRST-DOMAIN.com%{REQUEST_URI} [R=301,L]
### Rewrite application ###
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !^/[0-9]+\..+\.cpaneldcv$
RewriteCond %{REQUEST_URI} !^/[A-F0-9]{32}\.txt(?:\ Comodo\ DCV)?$
RewriteCond %{REQUEST_URI} !^/\.well-known/acme-challenge/[0-9a-zA-Z_-]+$
RewriteRule ^(.*)$ index.php?$1 [L,QSA]
### Close RewriteEngine ###
</IfModule>
<Files 403.shtml>
order allow,deny
allow from all
</Files>

我的互联网速度非常慢,我无法检查我的所有网页

谢谢! &LT; 3

0 个答案:

没有答案