Ok follow the following,
ACP > System Settings > Search Engine Optimization, Find Use .htaccess mod_rewrite and select yes
Then Underneath you will see the following,
<IfModule mod_rewrite.c>
Options -MultiViews
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule .(jpeg|jpg|gif|png)$ /public/404.php [NC,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
Well just go in to your FTP root and add the Code above in to the .htaccess file.
If you do not have this file create one and add the following code above.