If i have a rewrite rule setup to get any name that is not a file and display the page-layout-select.php
How would I set a 404 if the page returns nothing as if I type anything (a page name that does not exist) it still loads the page-layout-select but without the content (because it doesn't exist)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([^/]*)$ page-layout-select.php?slug=$1 [L,QSA]
Any help with this would be great
Thanks