Replies: 0
Site: retroboss.co
Theme: TwentySeventeen
Plugin: None
The default location for a page called shop would be is retroboss.co/index.php/shop due to the custom URL structure of /index.php/%year%/%monthnum%/%day%/%postname%/ but if I change it to anything else it just 404s. I have tried editing the page url even thought it seems to be updating to the new format correctly, trashing and recreating the page doesn’t work.
I have other wordpress sites running on the same machine that work fine
The .htaccess is the default on.
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress