I’m currently building EE sites for a company that says their old developer told them that all sites must be hosted on the company’s dedicated Linux server. When I asked why, they said something vague like “something about the URLs.”
What I do know is that the old developer used an .htaccess file to remove index.php from the URLs of his EE sites. This is the code he used, and I use it as well:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php/$1 [L]Would this .htaccess file have anything to do with the restriction to a dedicated Linux server? Or is this whole thing total fantasy as I suspect?
The company mostly deals with GoDaddy servers/hosting, and that’s where their dedicated server is located as well.
Can any of you think of a reason why I can’t host my clients’ EE sites anywhere I darn well please (including Linux & Windows; and Shared & VD Servers)?