We have a Wordpress Mutlisite running so I need do redirect the specific pages, categories and files only if a specific domain is requestet.
So when domain.de/allgemein is requestet it shoul redirect to domain.de/neues-von-der-domain but no if for example domain2.de/allgemein is requestet.
We use Domainmapping so all Domains have just one htaccess file.
RewriteEngine On
RewriteCond %{HTTP_HOST} ^domain.de$ [NC]
RewriteCond %{REQUEST_URI} !^/allgemein
RewriteRule domain.de/neues-von-der-domain/ [NC,L,R=301]