When I open URL in localhost it works And when we open it on server it shows Page not found 404 error .
The URL : http://site_name/index.php/admin/zooz_sample/openTrx/200/2?_=135956776989523423
The config file :
$config['uri_protocol'] = "AUTO";
The .htaccess file :
AcceptPathInfo on
RewriteCond %{REQUEST_URI} ^application.*
RewriteRule ^(.*)$ /index.php?/$1 [L]
#Checks to see if the user is attempting to access a valid file,
#such as an image or css document, if this isn't true it sends the
#request to index.php
#RewriteCond $1!^(index\.php|application/images|application/js|application/chart|application/css|application/uploadimages|application/photo_gallery)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]
Please Tell what the actual problem is .Thanks in advance.
