add the following to your .htaccess file (the best location is to place this before the start of all the code generated by MSU for .htaccess)
Code: Select all
RewriteCond %{QUERY_STRING} ^currency=([a-zA-Z]{3})&zenid=([a-z0-9]*)$ [OR]
RewriteCond %{QUERY_STRING} ^currency=([a-zA-Z]{3})$ [OR]
RewriteCond %{QUERY_STRING} ^zenid=([a-z0-9]*)$ [OR]
RewriteCond %{QUERY_STRING} ^$
RewriteRule ^about-us.html$ index.php?main_page=about_us [L,QSA]
RewriteCond %{QUERY_STRING} ^currency=([a-zA-Z]{3})&zenid=([a-z0-9]*)$ [OR]
RewriteCond %{QUERY_STRING} ^currency=([a-zA-Z]{3})$ [OR]
RewriteCond %{QUERY_STRING} ^zenid=([a-z0-9]*)$ [OR]
RewriteCond %{QUERY_STRING} ^$
RewriteRule ^returns.html$ index.php?main_page=returns [L,QSA]
RewriteCond %{QUERY_STRING} ^currency=([a-zA-Z]{3})&zenid=([a-z0-9]*)$ [OR]
RewriteCond %{QUERY_STRING} ^currency=([a-zA-Z]{3})$ [OR]
RewriteCond %{QUERY_STRING} ^zenid=([a-z0-9]*)$ [OR]
RewriteCond %{QUERY_STRING} ^$
RewriteRule ^testimonials.html$ index.php?main_page=testimonials [L,QSA]
You can obviously use the same logic above for other links that are not automatically support by MSU. Once you add the above code to your .htaccess file, you want to make sure you change your link in your file to use the new MSU urls. For example chante http://www.yourdomain.com/index.php?mai ... stimonials to http://www.yourdomain.com/testimonials.html if you're using static link. You can see an example of this at http://www.clevershoppers.com (please look in the footer).