Welcome Guest, Not a member yet? Register   Sign In
No input file specified
#2

[eluser]toopay[/eluser]
Are you try to remove 'index.php' from your uri? then,try this .htaccess
Code:
RewriteEngine On
    RewriteBase /

    RewriteCond %{REQUEST_URI} ^system.*
    RewriteRule ^(.*)$ /index.php?/$1 [L]
    
    RewriteCond %{REQUEST_URI} ^application.*
    RewriteRule ^(.*)$ /index.php?/$1 [L]

    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ /index.php?/$1 [L]
your config file now should be :
Code:
$config['index_page'] = "";
$config['uri_protocol']    = "AUTO";


Messages In This Thread
No input file specified - by El Forum - 04-07-2011, 12:43 AM
No input file specified - by El Forum - 04-07-2011, 01:05 AM
No input file specified - by El Forum - 04-07-2011, 01:37 AM
No input file specified - by El Forum - 04-07-2011, 01:55 AM
No input file specified - by El Forum - 04-07-2011, 02:53 AM
No input file specified - by El Forum - 04-07-2011, 03:34 AM
No input file specified - by El Forum - 04-07-2011, 05:46 AM
No input file specified - by El Forum - 04-07-2011, 06:36 AM
No input file specified - by El Forum - 04-07-2011, 09:21 PM
No input file specified - by El Forum - 04-07-2011, 09:53 PM



Theme © iAndrew 2016 - Forum software by © MyBB