I am working in php project using codeigniter. I am very new to codeigniter. I have exiting project that i managed to run properly.But when i am inserting username and password,its giving me error as=
"The requested URL /PRS/index.php/login was not found on this server."
I am using wamp server. httpd.conf file has documentRoot as "c:/wamp/www/PRS/" My .htaccess file has code as-
RewriteEngine On
RewriteBase /PRS
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /PRS/index.php/$1 [L]
My project's config.php file has code as-
$BASE_URL = "http://".$_SERVER['SERVER_NAME']."/PRS/" ;
$DB_HOST = "localhost";
$DB_USER = "root";
$DB_PASSWORD = "mysql";
$DB_NAME = "prsdb";
So can someone please help me..