I have a url like this: http://www.localhost.com/code_category/computers/
I want to change this url to: http://www.localhost.com/category/computers/
I don't need url redirection. My current htaccess file looks like this:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>