Quote:
Originally Posted by Stizerg
How can I change links like '/help.php?section=shipping' to '/shipping.html'?
thanks
|
I always prefer to use static pages but you can also manually change the templates to link to /shipping.html and then use mod rewrite in your .htaccess file as follows:
Open .htaccess and find:
RewriteEngine On
After add:
RewriteRule ^shipping\.html$ /help.php?section=shipping [L]