You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Guys, if you encounter the same problem as me, see how I solve it!!!
Directly modify the eleventh line of the. htaccess file:
RewriteRule ^(.*)$ /SchoolERP/index. php?$ 1 [L]
Add a? After index.php,that will do
Or copy my. htaccess directly
<IfModule mod_rewrite.c>
RewriteEngine On
#rename "codeIgniter213" with your application directory
#For example you rename the entire CodeIgniter application as "mysite"
#then, the "RewriteBase /" will be like this "RewriteBase /mysite"
#same as at line number 10, "RewriteRule ^(.*)$ /codeIgniter213/index.php #/$1 [L]" will be like this "RewriteRule ^(.*)$ /mysite/index.php/$1 [L]"
RewriteBase /SchoolERP
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /SchoolERP/index.php?$1 [L]
</IfModule>
enjoy
The text was updated successfully, but these errors were encountered:
hi there,
i am also facing same error. playing with . htaccess but of no use. your . htaccess and the one already provided have same code. can you help how to go away 404 error
Guys, if you encounter the same problem as me, see how I solve it!!!
Directly modify the eleventh line of the. htaccess file:
RewriteRule ^(.*)$ /SchoolERP/index. php?$ 1 [L]
Add a? After index.php,that will do
Or copy my. htaccess directly
enjoy
The text was updated successfully, but these errors were encountered: