digitalelk
Forum Replies Created
Viewing 3 replies - 1 through 3 (of 3 total)
-
Forum: Fixing WordPress
In reply to: Issue with permalinks in URLAh yes thats working now, many thanks! I think it would have been a while before I spotted that one… 🙂
Forum: Fixing WordPress
In reply to: Issue with permalinks in URLThanks @autotutorial, even with a clear browser cache (any browser) it still errors even with a trailing /
@sterndata I don’t have any helper plugins, the way I am dealing with auto redirect to https is I have a separate Apache virtual host on port 80 for digitalelk.uk, here is the config I have for it:-
<VirtualHost digitalelk.uk:80> ServerName digitalelk.uk ServerAlias www.digitalelk.uk RedirectPermanent / https://digitalelk.uk </VirtualHost>I’m guessing it’s something to do with that way of handling the auto redirect, if so is there a better way that you know of?
Many thanks,
GarethForum: Fixing WordPress
In reply to: Issue with permalinks in URLThanks for the fast reply Steve!
Here is the contents of the .htaccess file:-
# BEGIN WordPress # The directives (lines) between <code>BEGIN WordPress</code> and <code>END WordPress</code> 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 WordPressMany thanks..
Viewing 3 replies - 1 through 3 (of 3 total)