Joomla tags

a real free joomla tag system

  • Increase font size
  • Default font size
  • Decrease font size
Hosting server

remove svn folders under linux

A simple and easy way to remove all svn folders and files:

find ./ -name ".svn" | xargs rm -Rf
 

Add or remove prefix 'www' to or from your site url via htaccess

If your site can be accessed both with and without the 'www.' prefix, you can use one of the following settings to redirect users to your preferred URL, either WITH or WITHOUT the 'www.' prefix. Choose ONLY one option:

  • To redirect all users to access the site WITH the 'www.' prefix, (http://joomlatags.org/... will be redirected to http://www.joomlatags.org/...), please add the following code to your .htaccess file:

       RewriteCond %{HTTP_HOST} ^joomlatags\.org$ [NC]
       RewriteRule ^(.*)$ http://www.joomlatags.org/$1 [L,R=301]
    
  • To redirect all users to access the site WITHOUT the 'www.' prefix, (http://www.joomlatags.org/... will be redirected to http://joomlatags.org/...) please add the following code to your .htaccess file:

       RewriteCond %{HTTP_HOST} ^www\.joomlatags\.org$ [NC]
       RewriteRule ^(.*)$ http://joomlatags.org/$1 [L,R=301]
    

please remember to change joomlatags.org to your domain name.

Tags: