logo joomla

Artikel ini akan membahas konfigurasi SEO di Joomla dengan menggunaan setting SEO bawaan dari Joomla. Penggunaan SEO di Joomla sangat disarankan karena dapat mempermudah search engine seperti Google atau Yahoo mengenali keyword dari artikel yang ditampilkan di web Joomla. Selain itu juga mempermudah orang untuk mengingat alamat halaman web favoritnya. Read More →

logo joomla

Tutorial ini membahas mengenai masalah di web Joomla yang dimana web Joomla menampilkan halaman web yang berantakan, yang muncul hanya tulisan tanpa gambar dan warna dan tata letak jadi kacau. Hal ini disebabkan file CSS (StyleSheet) template yang digunakan tidak bisa ditemukan oleh Joomla.

Memang pada halaman awal (home) Joomla tampil dengan sempurna, tetapi ketika diklik pada salah satu menu web maka akan muncul halaman yang berantakan. Masalah ini ditimbulkan ketika mengaktifkan opsi yang ada di SEO Settings di Administrator Joomla tanpa mengganti “htaccess.txt” menjadi “.htaccess” . Read More →

nama domain

nama domainTo avoid duplicate content (not relevant), you must chose using www or without www. Another consideration not using www:

  • www is sub domain
  • www makes URL longer

Before decide, you must check your www pagerank anda without www pagerank.
web hosting murahWeb Hosting Murah
Menyediakan layanan web hosting Indonesia murah dengan cPanel mendukung PHP, MySql, CMS Joomla dan WordPress.

I prefer to use without www because makes shoter url.

You can redirect all hit on subdomain www to domain on .htaccess. Just add this:

RewriteEngine On
RewriteCond %{HTTP_HOST} !^your-domain-name-of-course\.com$
RewriteRule ^(.*)$ http://your-domain-name-of-course.com%{REQUEST_URI} [R=301,L]

If you prefer to use www instead without www, you can add this script on .htaccess:

RewriteEngine On
rewriteCond %{HTTP_HOST} ^your-domain-name-of-course.com [NC]
rewriteRule ^(.*)$ http://www.your-domain-name-of-course.com/$1 [R=301,L]

Article Source: http://www.ssi-developer.net/htaccess/redirecting.shtml

Introduction:

This guide shows you how to use .htaccess to redirect a specific page to another address. This is probably the best way to redirect pages mainly because of the lack of effort it needs to set up and it’s not browser dependent like some redirection scripts. If you have to reorganise a web site or move pages or change page extensions like I have done recently (Dec 02) then this is a life-saver!

Redirecting
web hosting murahWeb Hosting Murah
Menyediakan layanan web hosting Indonesia murah dengan cPanel mendukung PHP, MySql, CMS Joomla dan WordPress.

Simply place the following in your .htaccess file:

Redirect /a-directory/oldpage.htm http://domain.com/b-directory/newpage.htm

The command is always the same and comprises three important parts, the word Redirect, the directory/file you want to redirect relative to the root and the full URL of the file you want to redirect to. These three ‘blocks’ must be on one line and each separated by a single space.

You can use this to redirect entire directories:

Redirect /directory http://domain.com/folder/

…or if you have simply changed file extensions:

Redirect /directory/codes.htm http://domain.com/directory/codes.shtml

Very simple but extremely useful!