CodeIgniter HTACCESS Problem

I am creating a site on CI. I am using some .htaccess code for inner page redirection. My code is

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

However contrary to the expectations the site is running too slow even after the usage of the codes. I do also have a code

RewriteEngine on

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php/$0 [PT,L]*

upon using it, the Home page is accessible but it is showcasing an error pertaining to the inner page as,‘input file not specified’.

My site host on BlueHost Server.

Do please provide me a solution in regards to the above problem.

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.