XF 2.0 how to reduce thie code htaccess

jamalfree

Active member
Licensed customer
how to reduce this code htaccess

first code to enable https for one domaine examle.com
seconde code to remove www
Code:
RewriteCond %{HTTP_HOST} example\.com [NC]
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://example.com/$1 [R,L]

RewriteCond %{HTTP_HOST} ^www.example.com$
RewriteRule ^(.*)$ https://example.com/$1 [R=301,L]
 
Back
Top Bottom