• Downloading from our site will require you to have a paid membership. Upgrade to a Premium Membership from 10$ a month today!

    Dont forget read our Rules! Also anyone caught Sharing this content will be banned. By using this site you are agreeing to our rules so read them. Saying I did not know is simply not an excuse! You have been warned.

Admin

Well-Known Member
Staff member
Administrator
Tạo subdomain ảo giúp chúng ta có thể tạo các trang như
user.tuoitreit.vn, user.wordpress.com mà không cần dùng đến cPanel để tạo từng cái như thông thường.
Bắt đầu, các bạn vào trang dns trung gian đang dùng (ở đây mình dùng sitelutions.com) tạo 1 subdomain tên *.domain.com và trỏ về IP của host đang dùng.
Ở đây mình dùng host cPanel 11
Tiếp đến các bạn vào host tạo tiếp 1 *.domain.com.
Thế là bước đầu đã thành công rồi :D bạn thử đánh đại ***.domain.com xem, tất cả đều chuyển về trang chủ :))
Bây giờ chúng tao nhờ vào công dụng của file .htaccess để thực hiện

Bạn tạo một file .htaccess với nội dung
PHP:
<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /

    #www is not a user subdomain
    RewriteCond %{HTTP_HOST} ^tuoitreit.vn [NC,OR]
    RewriteCond %{HTTP_HOST} ^tuoitreit.vn [NC]
    RewriteRule ^(.*) $1 [L]

    #redirect wildcard subdomains
    RewriteCond %{HTTP_HOST} ([^.]+)\.tuoitreit.vn [NC]
    RewriteRule ^$ /thanhvien.php?user=%1 [L]
    </IfModule>
    <IfModule !mod_rewrite.c>
    ErrorDocument 404 /index.php
    </IfModule>


Lưu lại nhá, thử đánh ***.domain.com xem, cuối cùng là hưởng thành quả.
 
hình như mình thấx 1 domain tách thành nhiều domain nhỏ mà! Vd: domain.me dns về xtgem mà *.domain.me dns về host.
 

Facebook Comments

New posts New threads New resources

Back
Top