Forum Moderators: bakedjake
Presently though, my site runs in a windows environment, using 2 Access databases which drive courses content using IISRewrite. There is also very much .asp coding.
So I'd need to both switch the Access databases to MySQL, and the asp to php. Aside from saving money on hosting on a LAMP server - are there any other benefits? Am loathe to make a switch without knowing the facts, and most I've spoken with so far know 1 option, and not the other (so strong biases). :(
If you have expertise on both, I'd love to hear from you. :)
One of the biggest advantages of LAMP (besides cost) is that it's open source. That often means less bugs/holes and faster patches. There have been a lot of changes in open source in the last few years; it's no longer geekware--even Big Blue itself is supporting it (one of the few companies which can go toe-to-toe with MS).
My concern is that they are hosted from the same IP address and share the same files. Will this still work? Advice greatly appreciated.
3 more details:
1. Does 301 work on a windows server?
2. Will a 301 merge/add the full PR and backlinks over?
3. Is 301 the best option here? Have heard of a 302. Plus, how about asking the DNS holder to sort it out from their side somehow?
A huge thanks again
Calum
Have read that creating a .htccess file in my root and having it contain the following will sort this out:
Redirect 301 / http*//www.yourdomaintoforwardtohere.co.uk/My concern is that they are hosted from the same IP address and share the same files. Will this still work? Advice greatly appreciated.
If they share the same files, I wouldn't do that. I haven't actually tested, so the software may be smarter than this, but I expect that what you described above would create an infinite loop of redirects. After all, if they share the same directory and files, then they share the same .htaccess, so you'll end up redirecting all your visitors to http*//www.yourdomaintoforwardtohere.co.uk/ over and over and over.
Instead, set up a separate virtual host for the domain that you want to re-direct, and only add the Redirect directive to the one that doesn't have any other content.