I am looking for a rewrite rule to the same url's without the "#-" The # is the article ID, so it changes with each particular article. Categoryname also changes.
www.site.com/foldername/categoryname/45-article<br>
www.site.com/foldername/categoryname/334-article<br>
www.site.com/foldername/anothercategoryname/634-article
I used...
RewriteEngine On<br>
RewriteRule ^(.*)/[\d]*-(.*)$ /$1/$2 [R=301,L]
This works great on all foldernames and it's categories, but my problem is that i need it to work only on certain foldernames and each catagory within that foldername. So i am hoping there is a rule simlilar to the one i used, but where i specify particular foldernames. Thank you for any help on this matter.
.*then. Match against string literals, e.g. the folder names. What are the category names, and are they static/finite? – Madbreaks Feb 27 at 17:28