Skip to main content

Posts

Showing posts with the label joomla

Cutoff or Limit introtext characters

I was searching for this for couple of days till now and I think I got a solution to place a character count to your intro text so that if you want to make your cat. or section in blog style so it will be more for category layout: open : \components\com_content\views\category\tmpl\blog_item.php Link how to

Redirecting index.php to root in Joomla 1.5 wiht htaccess

Its very important that the homepage of the website is accessible through one URL only. For example, a typical joomla site would be accessible by domainname.com, www.domainname.com, domainname.com/index.php and www.domainname.com/index.php. If you are using frontpage component on the homepage, you may have an additional URL for homepage. This way, the power of backlinks and google PR is distributed across several URLs. This can be easily taken care of by using the following code in .htaccess file. For redirecting /index.php to www.domainname.com: Options +FollowSymLinks DirectoryIndex index.php RewriteEngine On RewriteBase / RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /index\.php\ HTTP/ RewriteRule ^index\.php$ http://www.domainname.com/ [R=301,L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] For redirecting domainname.com to www.domainname.com: Options +FollowSymlinks RewriteEngine on rewritecond %{http_host} ^domainname.com...