Things You'll Need:
- Computer
- Internet
- Website
- Access to admin
-
Step 1
Wikipedia definition
It is a process for converting data that has more than one possible representation into a standard canonical representation. This can be done to compare different representations for equivalence, to count the number of distinct data structures, to improve the efficiency of various algorithms by eliminating repeated calculations, or to make it possible to impose a meaningful sorting order.
Wikipedia example
As an example, Wikipedia uses canonicalization in its processing of links between articles. For example:
[[Egg_salad]]
[[egg salad]]
[[ egg_salad ]]
all refer to same article. -
Step 2
Download a plug-in from http://scott.yang.id.au/code/permalink-redirect/
and install it just like other plugins. You'll find more options under the options tab. -
Step 3
Or simply place the following code in the .htaccess file (Manage > files > .htaccess ).
RewriteEngine On
RewriteCond %{HTTP_HOST} ^smartadvise\.info$ [NC]
RewriteRule ^(.*)$ http://www.smartadvise.info/$1 [R=301,L]
(replace smartadvise.info with your own domain and extension)











