tags:

views:

7

answers:

1

i have a cms that is generating SEFURLs almost correctly.

but there is a menu item called separator that you can use as a hook for javascript, which has no link on it.

the url that gets created is http://www.mysite.com/separator/mycategory/mypage i want to get rid of the /separator so that the url looks like

http://www.mysite.com/mycategory/mypage

is this possible to do in the htaccess? i tried a few rewrite rules and they dont work.

+1  A: 
RedirectMatch Permanent ^/separator(.*) $1
toscho