0
実際には、内部および外部の両方のIPアドレスをドメイン名にリダイレクトし、http://domainのトラフィックをhttps://domainにリダイレクトすることでした。 httpd.confファイル内の行:https://ip.addressをhttps://ドメインにリダイレクトする方法
#Redirect IP to domain name
<IfModule rewrite_module>
RewriteEngine On
RewriteCond %{HTTP_HOST} ^172\.1\.20\.4$ [NC,OR]
RewriteCond %{HTTP_HOST} ^83\.101\.140\.185$ [NC]
RewriteRule (.*) http://ict-helpdesk.madanonwovens.com/$1 [R=301,L]
</IfModule>
#Redirect all connections to HTTPS
<IfModule rewrite_module>
RewriteEngine On
#Force SSL on all connections
RewriteCond %{HTTPS} off
RewriteCond %{REMOTE_HOST} !^127\.0\.0\.1
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
</IfModule>
しかし、今、私はhttps://IP-addressを書くときに例外を追加して、暗号化せずにページにリダイレクトするように私に尋ねるのでhttps://domain にhttps://IP-addressをリダイレクトしたいです。
助けてください!