Thursday, November 12, 2009
Tuesday, October 20, 2009
Turn dynamic URLs into search engine friendly static URLs
The original URL
------------------
http://www.scriptscart.com/shop.php?cmd=product&category=vehicles&product=bus
The rewritten URL
--------------------
http://www.scriptscart.com/product/vehicles/bus.html
RewriteRule ^([^/]*)/([^/]*)/([^/]*)\.html$ /shop.php?cmd=$1&category=$2&product=$3 [L]
------------------
http://www.scriptscart.com/shop.php?cmd=product&category=vehicles&product=bus
The rewritten URL
--------------------
http://www.scriptscart.com/product/vehicles/bus.html
Add the following lines to .htaccess:
RewriteEngine OnRewriteRule ^([^/]*)/([^/]*)/([^/]*)\.html$ /shop.php?cmd=$1&category=$2&product=$3 [L]
Please follow the instructions below to do it.
- First you need to check if the file .htaccess exists in the root of your website.
- If the file .htaccess exists, download it from your site, add the lines below to the end of the file, and upload the modified file back to your site. Please make a copy of the original file .htaccess. So if anything goes wrong, you may restore the original file.
- If the file .htaccess does not exist, create a new file .htaccess and add the lines below to it. Then upload it to the root of your website. You may delete it if anything goes wrong.
Thursday, August 6, 2009
Payment gateways test account
Authorize.net
==========
You can use any of the following test credit card numbers. The expiration date must be set to the present date or later: |
370000000000002 American Express Test Card |
google checkout
===========
GoogleMerchant ID : 643760143118924
Google Merchant Key : jk0ACPM8RdntndpuFbqjew
Subscribe to:
Posts (Atom)