• 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.

Share Một vài code chuyển domain bằng .htaccess

Myshare

New Member
Trường hợp 1: Chuyển từ Domain có thư mục ~> Sub Domain
PHP:
RewriteEngine on
RewriteBase /mp3/
RewriteCond %{HTTP_HOST} !^newstyleclan.net/music$ [NC]
RewriteRule ^(.*)$ http://music.newstyleclan.net/$1 [L,R=301]
Code trên có ý nghĩa là Chuyển tất cả bài viết từ domain : newstyleclan.net/music về subdomain: music.newstyleclan.net và giữ nguyên đường link
Thí dụ link trước là : newstyleclan.net/music/baihat1.html
thì sau khi dùng file .htaccess trên kia thì nó sẽ thành music.newstyleclan.net/baihat1.html giữ nguyên

Trường hợp 2: chuyển Domain ~> Domain
PHP:
RewriteEngine on
RewriteBase /
RewriteCond %{HTTP_HOST} !^newstyleclan.net/$ [NC]
RewriteRule ^(.*)$ http://nguoibanviet.net/$1 [L,R=301]
Trường hợp 3: chuyển Sub Domain ~> Domain
PHP:
RewriteEngine on
RewriteBase /
RewriteCond %{HTTP_HOST} !^music.newstyleclan.net/$ [NC]
RewriteRule ^(.*)$ http://newstyleclan.net/$1 [L,R=301]
Trường hợp 4: chuyển Domain ~> Sub Domain
PHP:
RewriteEngine on
RewriteBase /
RewriteCond %{HTTP_HOST} !^newstyleclan.net/$ [NC]
RewriteRule ^(.*)$ http://music.newstyleclan.net/$1 [L,R=301]
 

Facebook Comments

New posts New threads New resources

Back
Top