joeh0717
joeh0717

Reputation: 79

Direct all traffic to root index page

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

Answers (1)

anubhava
anubhava

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

Related Questions