salam.
mau bertanya nih . untuk konfigursi file .htaccess yang benar bagaimana yah. supaya ketika membuka web addondomain tidak jadi www.domainutama.com/addondomain.com. harusnya linknya www.addondomain.com.
code .htaccess saat ini :
<IfModule mod_rewrite.c>
Options -Indexes
RewriteEngine on
DirectoryIndex index.php
RewriteCond %{HTTPS} off
RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteRule ^(.*)$ https://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
<IfModule mod_php5.c>
RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>
<IfModule !mod_php5.c>
RewriteRule ^(.*)$ index.php?/$1 [L]
</IfModule>
</IfModule>
<IfModule !mod_rewrite.c>
ErrorDocument 404 /index.php
</IfModule>
fungsi di atas : meredict web utama ke https://www. kasusnya sub dommain/addon domain juga ngikutin ke https & www. bagaimana ya kode yang benar ??
Terimakasih.