cpchen
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: http to https broken linksHi All,
Finally the problem is fixed by referring to: https://stackoverflow.com/questions/11253185/404-error-with-wordpress-ssl?rq=1
that is by adding below text in the ssl conf file:
…
<Directory /var/www/wordpress/>
AllowOverride All
</Directory>
….—————–
This case is closed. Thank you all!Forum: Fixing WordPress
In reply to: http to https broken linksHi all,
Finally, I used “plain” format permalink and update all embedded links (which was in “post name” format) into “plain” format manually.
I hope someone come across can figure out the cause of problem. I don’t like permalink in plain format.
Forum: Fixing WordPress
In reply to: http to https broken linksHi Maninder,
I checked there is .htaccess and it looks like this:
# BEGIN WordPress
# The directives (lines) between “BEGIN WordPress” and “END WordPress” are
# dynamically generated, and should only be modified via WordPress filters.
# Any changes to the directives between these markers will be overwritten.
<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
Forum: Fixing WordPress
In reply to: http to https broken linksHi arcray,
Yes, I tried. But it is same.