Joomla Module to Display Twitter Buttons
Joomal module will display twitter buttons in any Joomla template positions. Module can be configured to display any twitter button you want. There are four buttons: Follow on Twitter, Share on Twitter, Twitter Hashtag and Twitter Mention. Each button can be configured exactly like Twitter Button Generator, all you need to do is enter your twitter username and you are ready to go.
.htacess redirect from subdomain to full URL
Sometimes, Google or other search engines start to crawl your subdomains, indexing everything without your knowledge. And your search results start to appear something like this – http://subdomain.mainsite.com/page.html, instead of http://mainsite.com/page.html. All paths to pages are same except the subdomain added to the URL.
To redirect all your subdomains to main site URL, add following line in your .htaccess file.
[cc lang=”htaccess”]
RewriteEngine On
RewriteCond %{HTTP_HOST} ^(www.)?[^.]+.mymainsitename.com.*$
RewriteRule (.*) http://mymainsitename.com/$1 [L]
[/cc]