Hi,
I use a modified htaccess file to force https with the following code:
RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
The site loads but not Pro editor. I get this error in the browser:
Not Found
The requested URL /pro/ was not found on this server.
When I revert back to the original htaccess file, it works:
BEGIN WordPress
RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L]END WordPress
Of course, I would like to force https and have pro work.
Please help.