OK, I did that and I modified my wp-includes/rewrite file as suggested in this thread:
http://wordpress.org/support/topic/108875?replies=4
I removed the word "categories" from this line:
if (empty($this->category_base))
$this->category_structure = $this->front . '/';
I tried it with and without the backslash. Bothways now I have no category page. Try clicking on my link above. There will be nothing there. Can you view the section of code below and/or suggest an alternative?
`function get_category_permastruct() {
if (isset($this->category_structure)) {
return $this->category_structure;
}
if (empty($this->permalink_structure)) {
$this->category_structure = '';
return false;
}
if (empty($this->category_base))
$this->category_structure = $this->front . '/';
else
$this->category_structure = $this->category_base . '/';
$this->category_structure .= '%category%';
return $this->category_structure;`