Archive for category htaccess
Regular expression and Rewrite Rule sample
Posted by in htaccess on June 3rd, 2010
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”










