Harsha M V
Harsha M V

Reputation: 54949

htaccess redirect all links from a domain to a particular URL

I am new to Apache. I want to redirect all the links from a domain to a particular file domain.com/welcome.html before visit any other page.

Upvotes: 0

Views: 742

Answers (1)

kvista
kvista

Reputation: 5059

Consider using mod_rewrite:

http://httpd.apache.org/docs/current/mod/mod_rewrite.html

which is the proper mechanism to redirect incoming traffic to a particular page based on a variety of conditions (incl referrer url, user agent, etc).

.htaccess is about authorization of resources, not redirection between resources.

Upvotes: 2

Related Questions