Archive for June, 2010

Redirect with htaccess

A great tutorial about redirect is this, and from apache site.

Several rules:

, ,

No Comments

Regular expression and Rewrite Rule sample

RewriteRule ^/?(tag)/([a-zA-Z_$]+)$ /index.php?option=com_tag&t=$1&t1=$2 [L]

^ -> start of expresion

/? -> / can exist or not.

(tag) -> a string “tag”

, , , , ,

No Comments