nemalh
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Custom permalinks working in http but not in httpsHi Clarence,
Yes we were able to solve the issue in our case.
It was due to
In the vhost of each blog we have entries for secure and non secured areas under port 443 and 80 respectively as
<Directory “/abc/htdocs”>
Options FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
DirectoryIndex index.php
</Directory>Where AllowOverride was set to None instead of All for https so webserver was not able to recognize/read virtualhost for the given directory.
Changing None to All solved the issue.
Hope this will help in your case.
Thanks,
NehaForum: Fixing WordPress
In reply to: How to redirect contents under directory from http to httpsHi,
This worked using
#redirect all http traffic to https, if it is pointed at /checkout
RewriteCond %{HTTPS} off
RewriteCond %{REQUEST_URI} ^/checkout/?.*$
RewriteRule ^(.*)$ https://mydomain.com/$1 [R=301,L]Thanks,
NehaForum: Fixing WordPress
In reply to: Custom permalinks working in http but not in httpsHi,
Please update us on the same.
Thanks,
NehaForum: Fixing WordPress
In reply to: Custom permalinks working in http but not in httpsHi All,
Please share us updates on the same.
We have custom permalink working on http but not on https.
What configurations etc can I check, any logs i can enable to know what exactly the issue is.
Kindly update us as this is high priority issue for us.
Thanks,
Neha