Routing problem solved in codeignitor

 Routing problem solved in codeignitor


just add following lines in .htaccess


for localserver like wamp or xamp


RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php/$1 [L]


for online server (put ? in line 5 after index.php)


RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php?/$1 [L]

Comments

Popular posts from this blog

Create table in mysql database in phpmyadmin panel

Flutter Scratch Card