Replies: 1
I installed SSL on my site. All redirects to HTTPS on iOS, and I.E. work fine. Doesn’t let me access http at all. However, google chrome lets me visit the regular http. I don’t need this. Here’s what I have so far
Under file manager in my cpanel > /public_html/.htaccess
I have
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
Any ideas?
- This topic was modified 21 minutes ago by juicyjuke.