Hello how do I redirect an error 404 to a home page with .htaccess?
Example: site.com if write site.com/some_site_notforund instead
Try:
FallbackResource /index.html
or whatever the homepage is
try:
RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^ /index.html [L]