Change url site.it/wordpress

Can you try by adding the following rules at the end of your .htaccess file? RewriteEngine On RewriteCond %{HTTP_HOST} ^example.com/wordpress$ [OR] RewriteCond %{HTTP_HOST} ^www.example.com/wordpress$ RewriteRule (.*)$ https://example.com/$1 [R=301,L] Replace example.com with your website url. Even if it works and doesn’t cause an infinite redirect, this is not the correct solution. I’ll try and take a … Read more

WordPress picks a wrong template if ?cat= is used as URL parameter

Why? This is because the pretty permalink: /tag/online-lectures/?cat=7 gets translated to the ugly permalink: index.php?tag=online-lectures&cat=7 And as you can see the /tag/online-lectures part no longer has the emphasis it once had. Afterall /category/arrester?tag=online-lectures would boil down to exactly the same ugly URL. Since the resulting query is an archive, and the most specific template available … Read more