I currently have URL's that have a fake directory, proper-case urls and a fake .html extension that i'd like to get rid of in favor of an all lower-case /page-id format.
Existing URL's will look like "http://www.sitename.com/Personal/Category-Name.html
I'd like those to now show "http://www.sitename.com/category-name" in the browser but map to "http://www.sitename.com/category.php?category=category-name"
My current .htaccess rule for the re-write looks like this:
RewriteRule Personal/(.*).html$ /category.php?category=$1 [L]
I'm trying this above the current rule, but it doesn't seem to do anything:
Redirect 301 Personal/(.*).html$ http://www.samesitedomain.com/$1
Thanks!