View Single Post
  #124  
Old 04-10-2009, 10:31 AM
  Jon's Avatar 
Jon Jon is offline
 

X-Guru
  
Join Date: Oct 2002
Location: Vancouver, Canada
Posts: 4,200
 

Default Re: CDSEO Pro - Complete SEO Solution - Custom Urls, Page Titles, Meta Data, Link Anchors

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]
Reply With Quote