My codeigniter project is working on local server and also in another domain. But when I am upload it in Digitalocean with a ip pages show up but it gives a 404 error in the console.
Here is the link:
http://139.59.78.131/custom-shirt/fabric
.htaccess
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]
</IfModule>
<IfModule !mod_rewrite.c>
ErrorDocument 404 /index.php
</IfModule>
$config['base_url'] = 'http://localhost/yourproject/';$config['base_url'] = 'http://www.yourdomain.com/'