Probably one for Nintendo and other htaccess guru's alike. I bought a domain and I don't need to content, just want to keep the links. How do I redirect any link, *, to the new domain? I'm guessing something like: RewriteRule ^(.*)$ http://www.newdomain.co.uk/index.html [R=301,L] Code (markup): But I haven't tried it.
domain.com/.htaccess Try Options +Indexes Options +FollowSymlinks RewriteEngine on RewriteBase / RewriteRule ^(.*)$ http://www.newdomain.co.uk/ [R=301,L] though I've seen trouble when URLs were complicated.
I've used that to redirect a complete vBulletin, RewriteRule ^(.*)$ http://www.domain.com/mb/$1 [R=301,L] though some times people have trouble using a code like this. I'm not sure what to do if the code doesn't work. Next suggestion I always give is to *gags* go to WebmasterWorld. *gags*