Saya bingung cara redirect domain non-WWW ke WWW. Banyak baris rewrite engine di .htaccess default drupal. Apa yang harus saya lakukan? Apa ada baris yang dihapus atau dimodifikasi? Misalnya dari situskami.com ke www.situskami.com Tolong bantuan step-by-step dan pencerahannya. Terima kasih.
-Drupal Lovers-
Reply to comment Redirect .htaccess non-WWW to WWW
buka .htaccess ada petunjuknya di sana, mau redirect pake www atau tanpa www..disana udah ada pilihannya...
aktipkan juga global redirect
buka .htaccess
buka file .htaccess
ini untuk redirect dari http://situskami.com/ ke http://www.situskami.com/
81 # To redirect all users to access the site WITH the 'www.' prefix,
82 # (http://example.com/... will be redirected to http://www.example.com/...)
83 # adapt and uncomment the following:
84 # RewriteCond %{HTTP_HOST} ^example\.com$ [NC]
85 # RewriteRule ^(.*)$ http://www.example.com/$1 [L,R=301]
buang tanda # dan ganti example menjadi situskami dibaris 84 dan 85
81 # To redirect all users to access the site WITH the 'www.' prefix,
82 # (http://example.com/... will be redirected to http://www.example.com/...)
83 # adapt and uncomment the following:
84 RewriteCond %{HTTP_HOST} ^situskami\.com$ [NC]
85 RewriteRule ^(.*)$ http://www.situskami.com/$1 [L,R=301]
ini untuk redirect dari http://www.situskami.com/ ke http://situskami.com/ caranya sama tinggal hapus tanda # dibaris 90 dan 91 dan ganti example jadi situskami
87 # To redirect all users to access the site WITHOUT the 'www.' prefix,
88 # (http://www.example.com/... will be redirected to http://example.com/...)
89 # uncomment and adapt the following:
90 # RewriteCond %{HTTP_HOST} ^www\.example\.com$ [NC]
91 # RewriteRule ^(.*)$ http://example.com/$1 [L,R=301]
87 # To redirect all users to access the site WITHOUT the 'www.' prefix,
88 # (http://www.example.com/... will be redirected to http://example.com/...)
89 # uncomment and adapt the following:
90 RewriteCond %{HTTP_HOST} ^www\.situskami\.com$ [NC]
91 RewriteRule ^(.*)$ http://situskami.com/$1 [L,R=301]
http://www.gabungyuk.com