Welcome Guest, Not a member yet? Register   Sign In
CodeIngiter with 1and1.com hosting Page cannot be displayed (Solution)
#1

[eluser]Ty Bex[/eluser]
I am sorry if this has been solved in the past but I thought that I would offer it up.

I am using a:
- 1and1 dedicated Server.
- Codeigniter 1.7.1

I noticed with 1and1 that it requires a ? after the index.php

Notable config information.
config.php
Code:
$config['base_url']    = "http://dev.servername.com/";
$config['index_page'] = "";
$config['uri_protocol']    = "AUTO";

The main difference is in the RewriteRule
On most of my other hosts this is what I use.
Code:
RewriteRule ^(.*)$ /index.php/$1 [L]

On 1and1 I had to add the ? at the end of index.php
Code:
RewriteRule ^(.*)$ /index.php?/$1 [L]
.htaccess
Code:
<IfModule mod_rewrite.c>
    RewriteEngine On

    #Removes access to the system folder by users.
    #Additionally this will allow you to create a System.php controller,
    #previously this would not have been possible.
    #'system' can be replaced if you have renamed your system folder.
    RewriteCond %{REQUEST_URI} ^system.*
    RewriteRule ^(.*)$ /index.php?/$1 [L]
    
    #Checks to see if the user is attempting to access a valid file,
    #such as an image or css document, if this isn't true it sends the
    #request to index.php
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    #This last condition enables access to the images and css folders, and the robots.txt file
    #Submitted by Michael Radlmaier (mradlmaier)
    RewriteCond $1 !^(index\.php|public|images|tmp|robots\.txt|css)
    RewriteRule ^(.*)$ index.php?/$1 [L]

</IfModule>

<IfModule !mod_rewrite.c>
    # If we don't have mod_rewrite installed, all 404's
    # can be sent to index.php, and everything works as normal.
    # Submitted by: ElliotHaughin

    ErrorDocument 404 /index.php
</IfModule>

I hope this helps some people.
#2

[eluser]Unknown[/eluser]
Thanks for sharing this. I am about to publish my first CI application on 1and1 shared host and this will definitely save me a lot headache.




Theme © iAndrew 2016 - Forum software by © MyBB