Hello John, thanks for your reply, here are the settings for one of these redirects:
Source URL: /my-humans/ [Ignore Case]
Query Parameters: Exact match
Title: –
Match: URL only
When matched: Redirect to URL with HTTP code 301
Target URL: https://www.thebitesizedbackpacker.com/about-us/
[Group: Redirections]
In terms of changes/redirects, I added the code below to redirect URLs without */ to URL’s with */ in november. After removing it and flushing the site cache, the problem still remained, though.
# Include trailing slash on directory
RewriteCond %{REQUEST_URI} !(.+)/$
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^(.+)$ https://www.example.com/$1/ [R=301,L]`
-
This reply was modified 3 years, 3 months ago by fpbnijdam.