Welcome Guest, Not a member yet? Register   Sign In
Links don't work in local copy of CI
#5

[eluser]TheFuzzy0ne[/eluser]
In the config.php file, try each of those protocols out, and see if that makes any difference.

Also, sometimes the rewrite just needs tweaking. I'd try some of the following combinations:

Code:
<IfModule mod_rewrite.so>
RewriteEngine On
RewriteCond %{REQUEST_URI} !^(/index\.php|/img|/js|/css|/robots\.txt|/favicon\.ico)
RewriteRule ^(.*)$ /index.php?/$1 [L]
</IfModule>

Code:
<IfModule mod_rewrite.so>
RewriteEngine On
RewriteCond %{REQUEST_URI} !^(/index\.php|/img|/js|/css|/robots\.txt|/favicon\.ico)
RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>

Code:
<IfModule mod_rewrite.so>
RewriteEngine On
RewriteCond %{REQUEST_URI} !^(/index\.php|/img|/js|/css|/robots\.txt|/favicon\.ico)
RewriteRule ^(.*)$ index.php?/$1 [L]
</IfModule>

Or perhaps better yet, go with this one - http://codeigniter.com/wiki/mod_rewrite/


Messages In This Thread
Links don't work in local copy of CI - by El Forum - 04-03-2009, 07:47 AM
Links don't work in local copy of CI - by El Forum - 04-03-2009, 08:19 AM
Links don't work in local copy of CI - by El Forum - 04-03-2009, 08:59 AM
Links don't work in local copy of CI - by El Forum - 04-03-2009, 01:29 PM
Links don't work in local copy of CI - by El Forum - 04-03-2009, 02:06 PM



Theme © iAndrew 2016 - Forum software by © MyBB