Welcome Guest, Not a member yet? Register   Sign In
problem with the htaccess file and the access of the function in the main controller
#6

[eluser]CodeIgniteMe[/eluser]
Basically, why do you need .htaccess anyway? Do you want your index.php unseen from the client's side? you can try the simple .htaccess directive
Code:
<IfModule mod_rewrite.c>
RewriteEngine on
# The ones in the list are ignored if encountered in the URI
RewriteCond $1 !^(index\.php|images|robots\.txt)
# rewrite anything else to the "index.php" page under the "try" subdirectory
RewriteRule ^(.*)$ /try/index.php/$1 [L]
</IfModule>


Messages In This Thread
problem with the htaccess file and the access of the function in the main controller - by El Forum - 06-25-2012, 02:38 AM



Theme © iAndrew 2016 - Forum software by © MyBB