I have an application on a server:
http://192.168.0.200/aplicacao
When I authenticate to access this error appears:
The requested URL / application / auth / login was not found on this server.
I searched and saw that it could be in the .htaccess
file. I changed it but it's still the same:
Options +FollowSymLinks
Options -Indexes
DirectoryIndex index.html index.php
RewriteEngine on
RewriteCond $1 !^(index\.php|images|robots\.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /aplicacao/index.php/$1 [L,QSA]
The same error mentioned above occurs.
When I had the application in localhost
, it worked without problems and I set up the files from codeigniter
to friendly url.