I simply migrated a web site from a staging server to the stay server and on the stay server all of the nav hyperlinks redirect to the identical web page. The URLs within the tackle bar are appropriate, however the web page is totally different.
So, tackle in browser reveals: https://somesite.com/about
however the web page exhibiting is the FAQ web page. Or the browser reveals https://somesite.com/contact
however the web page that pops up continues to be FAQ. It’s the similar for each web page: appropriate URI in browser, all present FAQ web page.
I reset the permalinks, however no pleasure.
The place do I begin wanting?
P.S. The positioning was constructed with Elementor, if that has any bearing.
htaccess is:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
RewriteBase /
RewriteRule ^index.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
<filesMatch ".(ico|pdf|flv|jpg|jpeg|png|gif|svg|js|css|swf)$">
Header set Cache-Management "max-age=84600, public"
</filesMatch>