2

What I have: Joomla 2.58 , K2 , sh404sef

Problem : I want to put K2 main category on my Homepage, so it shows a few folders of Sub-categories... But I don't want the main category to be seen in URL. But all other categories should be seen. How to do that?!

Shaz
  • 2,647
  • 2
  • 35
  • 45

1 Answers1

1

Are you able to select all the sub-categories for the menu item instead of the parent?

OR

Remove directory from url htaccess apache

In .htaccess:

Options +FollowSymLinks -MultiViews
# Turn mod_rewrite on
RewriteEngine On
RewriteBase /

RewriteRule ^((?!all-categories/).*)$ bar/$1 [NC,L]
Community
  • 1
  • 1
isherwood
  • 58,414
  • 16
  • 114
  • 157