Your rule is fine. The problem with css / js / image is that you are using a relative path to include them.
You can add this just below the <head> in the HTML page:
<base href="/" />
so that each relative URL is removed from this base URL, and not from the current page URL.
Also keep only this rule in your .htaccess:
DirectoryIndex index.php RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^[^.]+$ index.php [L]
anubhava
source share