Myshare
New Member
Trường hợp 1: Chuyển từ Domain có thư mục ~> Sub Domain
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
Trường hợp 3: chuyển Sub Domain ~> Domain
Trường hợp 4: chuyển Domain ~> Sub Domain
PHP:
RewriteEngine on
RewriteBase /mp3/
RewriteCond %{HTTP_HOST} !^newstyleclan.net/music$ [NC]
RewriteRule ^(.*)$ http://music.newstyleclan.net/$1 [L,R=301]
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]
PHP:
RewriteEngine on
RewriteBase /
RewriteCond %{HTTP_HOST} !^music.newstyleclan.net/$ [NC]
RewriteRule ^(.*)$ http://newstyleclan.net/$1 [L,R=301]
PHP:
RewriteEngine on
RewriteBase /
RewriteCond %{HTTP_HOST} !^newstyleclan.net/$ [NC]
RewriteRule ^(.*)$ http://music.newstyleclan.net/$1 [L,R=301]