简体   繁体   中英

Drupal redirect - subdomain to domain

I Have a drupal 7 website with a plain domain: example.com .

I have another server with apache2 for creating static webpages and hotsites in a subdomain: content.example.com .

Would be ever possible to redirect specific pages from my subdomain, for example: content.example.com/2014/special to my root domain , like example.com/special ?

Many thanks in advance

使用.htaccess文件重写URL。

You can do this using .htaccess files. Ex:

RewriteCond %{HTTP_HOST} ^content\.example\.com/2014/special$ [NC]
RewriteRule ^(.*)$ http://example.com/special [R=301,L]

Haven't tested, but pretty sure that works. Correct me if I am wrong.

make a file called .htaccess (make sure it is not .htaccess.txt), and put it in the directory of the page you want to redirect.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM