Forum Moderators: phranque
RewriteEngine On
RewriteRule ^([^/]*)$ /?pg=cat&type=$1 [L]
I want to change my URL from..
[mywebsite.com...]
to
[mywebsite.com...]
Thank you in advance for any help.
Look at your server error log to determine which is the specific problem. In either case, the changes below should fix it.
Options +FollowSymLinks
RewriteEngine on
RewriteRule ^([^/]+)$ /?pg=cat&type=$1 [L]
Jim