I see, when you enter a link to your page other than your home, example:
http://www.michaelcropper.co.uk/contact-me
www.michaelcropper.co.uk/contact-me
michaelcropper.co.uk/contact-me
If https://
is not in the prefix, the HTTP link loads instead. Add the following into your .htaccess
in between the <IfModule mod_rewrite.c>
tag:
RewriteCond %{HTTPS} !=on
RewriteRule ^(.*) https://%{SERVER_NAME}/$1 [R,L]
If there were no additional modifications done to your .htaccess
, it should look like the following:
# 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]
# Rewrite HTTP to HTTPS
RewriteCond %{HTTPS} !=on
RewriteRule ^(.*) https://%{SERVER_NAME}/$1 [R,L]
</IfModule>
# END WordPress
Let me know how it goes.
Related Posts:
- How do I skip wordpress’s 404 handling and redirect all 404 errors for static files to 404.html?
- Redirect entire website to a single page
- Old blog/ and blog/feed/ URLs not working after moving blog to top-level via .htaccess
- Force HTTPS using .htaccess – stuck in redirect loop
- 301 redirect not working through .htaccess
- Site redirects to wrong url when saving settings
- Index in root, wordpress in subdirectory
- 302 redirect instead of 301 after switch to HTTPS
- How do I skip wordpress’s 404 handling?
- Redirect from https to http or from http to https? [closed]
- Redirect to https not working with .htaccess [closed]
- htaccess redirect – directory and subpages to a single page
- Can WordPress redirect to a “similar page” in case of 404 error
- htaccess redirect dynamic posts
- Hacked website redirect, only on desktop, help with restoring it [closed]
- RedirectMatch and Redirect interfering with each other
- How to hide that a certain non-WordPress directory exists on the server?
- Menu links only using http after enabling https, unable to redirect http links
- WordPress site in subdirectory load site in main directory
- https multiple redirects
- How to create a 301 redirect that doesn’t apply to subsites
- Why does multisite bypass WordPress for wp-content, wp-admin, wp-includes and .php files?
- some url does not redirect from http to https
- Why can’t I access files / directories outside of wordpress
- WordPress blocking/preventing viewing of .cgi file in subdirectory [closed]
- Redirect blogpage /blog/abcd/ to /blog/
- https redirect (with .htaccess) redirect loop
- Redirect all pages except one to homepage via .htaccess
- Redirecting old post url to 404 in wordpress using htaccess
- htaccess redirects and WordPress
- Redirect blog archive into certain format
- CNAME vs A Record for WWW – with 301 Redirects
- How to publish new posts/pages in root instead of subfolder, but keep old structure in place?
- forward domain name to particular page?
- htaccess rules not applied?
- Use virtual pages point to one specific page
- htaccess redirect – replace special character
- Load time cost of using a redirect plugin v direct .htaccess entry
- htaccess 301 Redirect not working for WordPress site
- How to set 301 redirection after moving WordPress blog?
- Redirecting amp url to non amp url
- I need to redirect an entire subdirectory in WordPress to the homepage – is this correct?
- Redirect all requested url to new url
- 301 redirection editing .htaccess doesn’t work
- Redirect custom post type from one domain to another domain
- Can’t control WordPress Addresses from admin panel
- Redirect htaccess does not work correctly with my new wordpress site
- 301-redirect directives for blogger to wordpress migration
- reducing number of URL Redirects and increasing speed
- How to use https on one page only?
- .htaccess 301 redirect conflict with plugin “WordPress Https”
- How do I put up a splash page and have all WordPress links redirect to this page?
- Redirect – remove custom query string
- Redirect specific URL before other redirects take place in .htaccess?
- How to forward all requests starting with a specific folder name to the same folder
- Prevent wordpress autoredirect
- Stop forcing certain paths to end with a forward slash
- How to redirect only 404 pages with htaccess in WordPress
- How to redirect the frontend of a WordPress site (only)?
- Permalinks do not include www subdomain
- I want to resolve Redirect Chain [closed]
- How to fix URL with pageid example /?p= too many redirection error
- 301 redirect any RSS feed on level up url
- How to redirect an old page url to the homepage
- redirecting an entire WP site from one top level domain to another
- Is there way to redirect all blog post pages to Home page?
- Temporary Infinite Redirect Loop
- A question about .htaccess
- Redirection with a wildcard
- Date based redirects of posts that no longer exist
- WordPress redirect to new domain name
- 301 all old pages to new location
- Open wordpress page in directory the way index.html would open
- Use a 301 to Redirect any 404 from at the blog post level to the blog archive
- Understanding Redirects
- Error in /blog redirection – ubuntu default WP installation
- how to redirect 404 to attachment.php?
- 302 redirect *.at/site redirecting to .comsite
- Using cache brokes redirecting
- 301 Redirect in WordPress not working in htaccess
- Loading /wp-content/uploads/site as /site/
- Redirect after login when WordPress in subdirectory
- Redirect after Permalink change – What regex do I use?
- How do I skip wordpress’s 404 handling?
- Allow GET request on certain page
- .htaccess redirect for old subfolder installation to new subfolder installation and https
- How to 301 redirect to subdirectory but keep access to wp-admin of main domain
- Pagination redirect set in .htaccess file is not working
- Redirecting a POST to a php script
- htaccess and redirect to new url using regex
- How to redirect correctly a root domain to a subdomain in a subfolder?
- Debugging a redirect loop affecting only certain pages
- How to permanent redirect old domain to new one. in case amazon store
- Need rewrite for URL with specific string
- How to redirect all pages of a blog to a new blog
- WordPress subfolders htaccess bypassing the root htaccess RewriteRule
- How does the flow of htaccess files in sub-directories work
- WordPress redirect from one directory to another but exclude wp-admin and wp-login.php
- How to Redirect Url to homepage?
- Redirect old homepage to the new one within the same site