Talk, I'm trying to shorten my URL a bit, but I can not figure out what's wrong with my .htaccess
.
Original URL: link
I want to leave it like this: link
.htaccess
<IfModule mod_rewrite.c>
RewriteEgine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^mvc/$ index.php/$1 [L]
</IfModule>