Currently i have 20+ URLs on my site in this formate
http://www.example.net/content/index/mission
I want to remove /content/index from all URLs, so they shou
You would need the rewrite module of Apache: mod_rewrite.
mod_rewrite
Then do something like this:
RewriteEngine on RewriteRule ^content/index/(.*)$ $1
Here is the official documentation of mod_rewrite: click