0
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 can be in the file .htaccess
. 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]
Same error occurs as above.
When I had the application on localhost
, worked smoothly and I set up the files from codeigniter
for friendly url.
If you have changed the route of your URL make sure that whoever is calling this authentication of yours has the route you set in Routes.php or the normal URL.
– 8biT