I've got a site with a temporary redirect to a directory on my site while we get a new host set up. www.travelproductsinc.com redirects to mysite/tpi/index.html (a landing page). My problem is that links to internal pages on the old site break.
I have these lines in my htaccess to handle the redirect so far:
RewriteCond %{REQUEST_URI} !/tpi/
RewriteCond %{HTTP_HOST} travelproductsinc
RewriteRule .* http://www.prolitho.com/tpi%{REQUEST_URI} [L]
What should I add to handle /tpi/index.php... ? Note: I still need to access a /tpi/images directory.
Bookmarks