I am trying to rewrite some url's. All the Urls look something like this
www.domain.com/index/c/index/ www.domain.com/index/c/about/ www.domain.com/index/c/store/
I would like these urls to look like the following:
www.domain.com www.domain.com/about www.domain.com/store
I have tried several different things in the htaccess file but haven't had any luck.
RewriteRule ^([^/.]+)/?$ /index/c/$1 [L]