Reputation: 54949
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
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