I've implemented an existing website into this great CMS and activated SE friendly URLs. So far so good.
However, there were pages with underscore (e.g. downloads_page.php) which I changed to a regular "minus" (downloads-page.php) for the reason of improved SE friendlyness. Now I need to redirect all pages that had this underscore (or aren't existing anmore) to the appropriate pages with "minus" (or the index page).
Usually I would use
Code: Select all
Redirect 301 /downloads_page.php http://sitename.com/downloads-page.php
Code: Select all
http://sitename.com/downloads-page.php?page=downloads_page.php
How would I have to change the htaccess file that it redirects to the new pretty URL (i.e. without the parameters)?
I appreciate your help and patience.

