Customized Blog/Latest Posts Page

I figured out what the problem was. It was the bozo on the keyboard (i.e., me) not understanding how WordPress operated and how its configuration settings interact. The first problem was simple. When I created a new “latest posts” page (in Elementor) it was displaying the list of blog posts…but because I didn’t update the … Read more

Scripts external to WordPress cause 404 errors

My money would be on the .htaccess of your root directory is trying to route the /docuwiki request through WordPress, which is why it is failing. Your .htaccess file should look something like this: <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule>