I need vanity urls, how can i make them redirect to the custom 404 page if they are not found in my DB?
.htaccess code
ErrorDocument 404 /url/notfound.php
RewriteEngine On
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteRule ^(\w+)$ code.php?code=$1