2014-02-13 395 views
0

我們有一個Wordpress Mutlisite正在運行,因此只有在需要特定域名時才需要重定向特定頁面,類別和文件。htaccess將特定頁面的特定頁面重定向到特定頁面

因此,當domain.de/allgemein被請求時,它將重定向到domain.de/neues-von-der-domain,但是如果例如domain2.de/allgemein被請求,則不會。

我們使用Domainmapping,因此所有域都只有一個htaccess文件。

RewriteEngine On 

RewriteCond %{HTTP_HOST} ^domain.de$ [NC]  
RewriteCond %{REQUEST_URI} !^/allgemein  
RewriteRule domain.de/neues-von-der-domain/ [NC,L,R=301] 

回答

0
enter code here <IfModule mod_rewrite.c> RewriteEngine On RewriteBase/RewriteRule index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> 

把這個代碼在.htaccess文件

0
RewriteEngine On 

    RewriteCond %{HTTP_HOST} ^(www\.)?yourdomain\.com [NC] 
    RewriteRule ^(.*)$ http://otherdomain.com/$1 [R=301,L] 

也可用於重定向到基於請求域的登陸頁:

RewriteEngine On 

    RewriteCond %{HTTP_HOST} ^www.domain.com 
    Rewriterule ^(.*)$ http://www.any-domain.com/landing-page.html [L]