.htaccess rule does not remove index.php from URL

0

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>
    
asked by anonymous 29.03.2018 / 01:33

0 answers