I have this issue where the below redirect keeps happening.
All js and css keeps keetting redirected to /?{version number} via 301.
Web server has no redirect directives, have cleared caches god knows how many times and ofc private/different browsers.
This is a wordpress site nested inside another wordpress site (I know…) and is routed via an nginx conf similar to below:
location ^~ /nestedsiteuri {
root /var/www/html/nested-site-root;
index index.php index.html;
try_files $uri $uri/ /nested-site-root/index.php$is_args$args;
}
I can confirm that this is capturing the request because it’s still loading /nestedsiteuir/?ver=### but not where the 301 is coming from or why it’s going there.
Any ideas would be greatly appreciated!
[ad_2]