ayksolutions
12-15-2005, 10:22 PM
I need to put a site on the "under construction" splash page. The problem here is that I need to disable the rest of the site as well, so everything is pointing to index.html. Basically, if you go to www.domain.com/pagetwo it will take to you domain.com/index.html (the splash page).
I am trying to use mod_rewrite within the .htaccess file for that account. So far, I have the following:
RewriteEngine On
RewriteRule ^oldstuff\.html$ newstuff.html
(above is just an example)
Another idea I found is:
RewriteEngine on
RewriteRule ^/~(.+) http://www.domain.com/index.html$ [R,L]
I am not good with regex, but if anyone familiar with this could guide me in the right direction, I'd be thankful.
Thanks
I am trying to use mod_rewrite within the .htaccess file for that account. So far, I have the following:
RewriteEngine On
RewriteRule ^oldstuff\.html$ newstuff.html
(above is just an example)
Another idea I found is:
RewriteEngine on
RewriteRule ^/~(.+) http://www.domain.com/index.html$ [R,L]
I am not good with regex, but if anyone familiar with this could guide me in the right direction, I'd be thankful.
Thanks
