Hello war59312,
Sure thing. All it requires is a few lines within your .htaccess file and you are good to go.
Suppose you have a URL that looks like this:
To manipulate your URLs, simply add this code to your .htaccess file:
RewriteEngine On
RewriteRule ^catalog-?([^-]+)-([^-]+)(.*)\.html$ /catalog$3.html?$1=$2 [QSA,N]
RewriteRule ^catalog-?\.html$ /catalog.php [QSA,L]
The first rule loops until no name-value pair is available and the second rule calls the catalog.php if no name-value pair is available.
So you would use this URL instead:
[EDIT] Removed ".php" after catalog. [/EDIT]
You would then have to be sure that all your URLs on your page reflect the new URL format, and you should then be good to go.
If you would prefer the Folder Structure like:
Let me know and I'll be more than happy to share my findings.
-SlickVic78