Welcome Guest, Not a member yet? Register   Sign In
Updated to CI 2.1 and now got problems with the anchor function
#4

[eluser]Freewolf[/eluser]
The .htaccess looks like

Code:
#When your application folder isn't in the system folder
    #This snippet prevents user access to the application folder
    #Submitted by: Fabdrol
    #Rename 'application' to your applications folder name.
    RewriteCond %{REQUEST_URI} ^application.*
    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
    RewriteRule ^(.*)$ index.php/$1 [L]
#Changed from RewriteRule ^(.*)$ index.php?/$1 [L] In order to avoid doubling of redirected URLs

Thanks for any help.


Messages In This Thread
Updated to CI 2.1 and now got problems with the anchor function - by El Forum - 06-08-2012, 07:12 AM



Theme © iAndrew 2016 - Forum software by © MyBB