Reputation: 79
Is it possible to add code to the root htaccess file of a site, to direct all traffic to the main index page for the site? For example, if someone goes to any of the following URLs, they they should be redirected to example.com:
Upvotes: 1
Views: 140
Reputation: 784938
You may use these rules in site root .htaccess of example.com
:
DirectoryIndex index.html
RewriteEngine On
RewriteCond %{REQUEST_URI} !(?:jpe?g|gif|png|ico|tiff|css|js)$ [NC]
RewriteRule !^index\.html$ /index.html [L,NC,R]
Upvotes: 1