Orilist.com Redirect SSL

0 replies
Hai please help me find solution

I want to redirect this website http://www.orilist.com to https via .htacess and other parking domain .net and .org

the problem is when it open https://orilist.com or https://orilist.org it no will redirect to main domain please check here

and when it access http://www.orilist.org/blaaaa it resulting url has index.php

Thanks....

Here .htaccess code


Options +FollowSymlinks
RewriteEngine on
RewriteBase /

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond $1 !^(index\.php|images|scripts|styles|vendor|robots\ .txt)

RewriteRule ^(.*)$ index.php?$1 [L]

RewriteCond %{HTTPS} off
RewriteCond %{HTTP_HOST} !^https://www\.orilist\.com$

RewriteRule ^/?(.*)$ https://www.orilist.com/$1 [R=301,L]
#orilistcom #redirect #ssl

Trending Topics