Disable SSL on a specific URL – CPanel
I want to disable https from a single link, forcing it to http. https://tipografiasartore.it/autodiscover/autodiscover.xml I added this string to my .htaccess file but it ain't working: RewriteEngine on RewriteCond %{HTTPS} on RewriteRule ^autodiscover/autodiscover.xml http://%{HTTP_HOST}%{REQUEST_URI} [L,R=301] My .htaccess so far: <IfModule…