up vote 1 down vote favorite
share [g+] share [fb]

Anybody came into this before?

Hosting a site on godaddy, the site is developed in codeigniter framework(php), to get pretty url, put this into .htacess

RewriteEngine on
RewriteCond $1 !^(index\.php|images|robots\.txt)
RewriteRule ^(.*)$ /index.php/$1 [L]

problem is only domain.com/index.php seems to work, other urls e.g domain.com/user/login won't work, codeigniter always returns '404 page'.

Is there anything going on with godaddy's mod_rewrite or just their apache which as I know is version 1.3.

Any clue?

[update] a bit CI debug, found /system/libraries/Router.php line 239, line

show_404( $segments[0] ); always gets invoded.

$segments [ 0=>'index.php' ], that seems to be the problem, but why? All works on my dev box which is in apache2

link|improve this question

48% accept rate
feedback

9 Answers

Had the same issue; Try this:

RewriteRule ^(.*)$ /index.php?/$1 [L]
link|improve this answer
feedback

Maybe godaddy doesn't allow the use of .htaccess files. I struggled with the pretty CI URLs for awhile on my local server, and eventually found that I had missed the AllowOverride property for my site in my server config.

http://stackoverflow.com/questions/1397014/how-do-i-write-a-htaccess-file-to-make-codeigniters-url-routing-work

link|improve this answer
I'm sure godaddy support .htaccess, I was testing on it just don't know how to get it to work with Codeigniter. – Shawn Sep 18 '09 at 6:45
Well, that's all I got. I haven't dug into CI very much yet, but as a first PHP-framework experience, I found the pretty URL's part to be an all-around pain. – Carson Myers Sep 18 '09 at 6:56
godaddy does support .htaccess – Matthew Rapati Sep 18 '09 at 14:41
feedback

Try adding:

Options +FollowSymlinks

Above:

RewriteEngine on
link|improve this answer
feedback

Did you check your app's config/config.php file and set the index_page to an empty string?

$config['index_page'] = "";

You also may need to change your uri_protocol to something other than "AUTO"

$config['uri_protocol'] = "REQUEST_URI";
link|improve this answer
feedback

try removing the / before the word index in your regex. "Long shot".. but it fixed a similar problem I had.

link|improve this answer
feedback

Thank you, daniels!

Somehow, apache 1.3 seems to dislike when the dollar sign follows the slash immediately.

index.php/?$1

Worked for me on an 1.3 hosting.

link|improve this answer
feedback

I just registered a domain with goDaddy. This is what I did to get it to work:

Here is my .htaccess:

Options +FollowSymLinks

RewriteEngine on

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l

RewriteRule .* index.php [QSA,L]

RewriteBase /

And my config:

$config['index_page'] = "";
$config['uri_protocol'] = "REQUEST_URI";

Now I can enter a url like mydomain.com/foo/bar and it works like a charm. Hope this helps someone.

link|improve this answer
feedback

I too got the same problem. Then i came to know that Godaddy doesn't support 'PATH_INFO'.

If you are using 'PATH_INFO' as 'uri_protocol' change :

$config['uri_protocol'] from 'PATH_INFO' to 'ORIG_PATH_INFO'

$config['uri_protocol']='ORIG_PATH_INFO';

then everything will work fine. Try it out...

link|improve this answer
feedback

The previous content is working perfectly to my godaddy website. All godaddy people can try this one. The .htaccess file should be generated from the control panel and not from local system and upload using ftp. if you want to upload it using ftp then upload it as ascii. also give permission to the .htaccess file for writable

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.