Search code examples
apache.htaccessmod-rewritehttp-status-code-301

Redirect all page on a domain to one file


I am looking to permanently redirect all the pages on a domain to one page on the SAME domain, using htaccess/mod_rewrite.

Basically I want any page requested for the domain to return a holding page [ which is index.php] at domain.com/

most of my attempts so far are causing errors as they are throwing the server intoa loop.

Thanks in advance

.k


Solution

  • Thanks to all,

    got it working, here it is it might be of help to others:

    RewriteRule !^(index.php)|.(js|ico|gif|jpg|png|css|mp3|xml|swf)$ /index.php [L,R=301]

    .k