404 issue in codeigniter based website
We have recently launched our website on linode server. The url of the website is
4 Replies
authname "Protected Page"
authtype Basic
authuserfile /var/chroot/home/content/13/10153313/html/.htpasswd
addhandler x-httpd-php5-cgi .php
RewriteBase /customstitchers/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]
can be sent to index.php, and everything works as normal.
Submitted by: ElliotHaughin
ErrorDocument 404 /
RewriteBase /customstitchers/
changed it to
RewriteBase /
RewriteEngine On
RewriteCond %{REQUEST_URI} ^/system.*
RewriteRule ^(.*)$ index.php?/$1 [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)$ index.php?/$1 [L]
links removed by admins