No category base in url

Status
Not open for further replies.
8 comments
go into your wordpress admin and in setting box you will find Permalink Settings click the button next to Custom Structure then in the text box next to it add:
Code:
/%postname%/
this will give you what you are looking for.

here is mine:
[slide]http://i55.tinypic.com/332tq8g.jpg[/slide]


for more advance tags look here:
Code:
http://codex.wordpress.org/Using_Permalinks
 
that setting is for posts i need to rewrite the categories urls

there is a setting to change "Category base" but i can only change the word "category" to something else, i can't remove it
 
so you wanted to "strip off" the category base?

edit your .htaccess and append this :|

Code:
RewriteRule ^category/(.+)$ http://www.yourblog.com/$1 [R=301,L]
Source: Here Oh!

I don't know if that works...
 
Status
Not open for further replies.
Back
Top