A
A
Alex Clampson2016-04-15 14:54:14
Apache HTTP Server
Alex Clampson, 2016-04-15 14:54:14

Is it possible to redirect from .com (without ssl) to .ru (with ssl) so that there is no certificate error?

Good afternoon, actually a dilemma in a topic. Logic tells me that the problem is not in the redirect and it is not solved, but still it would be foolish not to ask.
here is my .htaccess

<IfModule mod_rewrite.c>
Options +FollowSymLinks
  RewriteEngine On
  RewriteCond %{HTTPS} =off 
  RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [QSA,L]
  RewriteCond %{HTTPS} !=on
  RewriteRule ^(.*)$ https://%{HTTP_HOST}/$1 [R=301,L]
  RewriteCond %{HTTP_HOST} ^www\.(.*) [NC]
  RewriteRule ^(.*)$ https://%1/$1 [R=301,L]

  RewriteCond %{HTTP_HOST} ^mysite\.com [NC]
  RewriteRule ^(.*)$ https://mysite.ru/$1 [R=301,L]

  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteCond %{REQUEST_FILENAME} !-l
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteCond %{REQUEST_FILENAME} !/bitrix/urlrewrite.php$
  RewriteRule ^(.*)$ /bitrix/urlrewrite.php [L]
  RewriteRule .* - [E=REMOTE_USER:%{HTTP:Authorization}]
</IfModule>

Answer the question

In order to leave comments, you need to log in

1 answer(s)
P
Puma Thailand, 2016-04-15
@Alex_Clampson

Of course it is possible

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question