Forum Moderators: phranque
Here is my url...
[website.com...]
I want it to be...
[website.com...]
Here is what I placed in .htaccess...
RewriteEngine On
RewriteRule ^brandproducts/(.*).php /brandproducts.php?brandid=$1
Am I missing something?
Thanks for any help!
Warren
Try adding the Options directive as shown, and note the minor tweaks to the RewriteRule itself.
Options +FollowSymLinks
RewriteEngine On
RewriteRule ^brandproducts/(.*)\.php /brandproducts.php?brandid=$1 [L]
Jim
Ask them to send you a copy and to tell you where they installed it -- for example, is it installed in httpd.conf or in .htaccess in your web root directory?
claus' suggestion about the leading slash should be heeded if the code is installed in httpd.conf, and it is (normally) omitted if the code is installed in .htaccess.
Jim