CodeIgniter Forums
The requested URL was not found on this server. - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Development (https://forum.codeigniter.com/forumdisplay.php?fid=6)
+--- Forum: CodeIgniter 3.x (https://forum.codeigniter.com/forumdisplay.php?fid=17)
+--- Thread: The requested URL was not found on this server. (/showthread.php?tid=80118)



The requested URL was not found on this server. - Lipe_Bogaci - 09-16-2021

Hi, friends i have one issue in accessing the apllication
on localhost works fine using Laragon, whereas in the server it displays error (The requested URL was not found on this server.) after the login submit button.
i have changed the config file to the default of CI but the issue is the same. also, the mos_rewrite is enabled in apache.
on .htaccess i have added the following settings
RewriteEngine On
RewriteCond $1 !^(index.php|resources|robots.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L,QSA]

what could be the issue?


RE: The requested URL was not found on this server. - InsiteFX - 09-16-2021

What verison of CodeIgniter are you using ?


RE: The requested URL was not found on this server. - paulbalandan - 09-16-2021

Try removing the ? in this line

RewriteRule ^(.*)$ index.php?/$1 [L,QSA]