I have a url like:

http://skepticalgamer.com/category/slam-the-controller

I'd like to strip out "category" from the URL. So I'd want:

http://skepticalgamer.com/slam-the-controller

to act as if it were the original URL above. Is that something that can be done with mod_rewrite?

link|improve this question

is category from another rewrite you've done or is it a folder ? if it is a folder i guess this could be trick as you would need to catch domain.com/whatever and rewrite to category so you might aswell lose other things that will get passed to domain.com/whatever – Prix Jun 16 '10 at 17:59
This is a Wordpress blog and I believe it's done via rewrite. – Chris Stewart Jun 16 '10 at 18:03
please add to your tag wordpress aswell – Prix Jun 16 '10 at 18:13
feedback

3 Answers

up vote 1 down vote accepted

Removing the category base is easily done with Wordpress Plugins ยป WP No Category Base, making changes in .htaccess unnecessary. The plugin doesn't permanently change URLs in the database, so if you disable the plugin, you get your category base back with no 404s for posts.

link|improve this answer
feedback

Yes, you could do this with mod_rewrite by doing something like this:

RewriteRule ^slam-the-controller$ category/slam-the-controller

This will take the URL:

http://skepticalgamer.com/slam-the-controller

and rewrite it to:

http://skepticalgamer.com/category/slam-the-controller

link|improve this answer
very well commented as i stated earlly of the complications this could imply. – Prix Jun 16 '10 at 18:01
The URL above is the only case in which I want this rule to take effect. I don't want "anything" coming in to be prefixed with category. I only want that full URL to be replaced by that one shorter URL. – Chris Stewart Jun 16 '10 at 18:05
I see, I've modified the rewrite rule for this specific case. – Ben S Jun 16 '10 at 18:15
yes but in this case he would need to specify each category by hand, it would be more suitable if he follows the step to change his permanent links with his custom structure within wordpress admin as he said he is using it. – Prix Jun 16 '10 at 19:02
feedback

Then what you want is this: http://codex.wordpress.org/Using_Permalinks

Make sure you have the right setup on your permanent links at your admin on wordpress so it will recreate the links shorter like you want.

alt text

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.