This is my .htaccess file , please guide what I need to add or configure to make the site working. Apache mod rewrite is enabled on server.
http://www.customstitchers.com/phpinfo.phpauthname "Protected Page"
authtype Basic
authuserfile /var/chroot/home/content/13/10153313/html/.htpasswd
addhandler x-httpd-php5-cgi .php
<Files booklet.php>
require user dpc
</Files>
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /customstitchers/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]
</IfModule>
<IfModule !mod_rewrite.c>
# If we don't have mod_rewrite installed, all 404's
# can be sent to index.php, and everything works as normal.
# Submitted by: ElliotHaughin
ErrorDocument 404 /
</IfModule>