Hey all, can someone tell me what is wrong with the below code? It gives me an internal server error.
<IfModule mod_rewrite.c>
# Send to index.php unless the request starts with the below.
RewriteEngine On
RewriteCond ${REQUEST_URI} !^(/index\\.php|/robots\\.txt|/favicon\\.ico|/license\\.txt|/license_graphtek\\.txt|/images/|/js/|/css/|/user_guide/)
RewriteRule ^(.*)$ /index.php/$1 [L]
</IfModule>
<IfModule !mod_rewrite.c>
# If we don't have mod_rewrite installed, all 404's are sent to index.php.
ErrorDocument 404 /index.php
</IfModule>