skip to Main Content

.htaccess Redirect all pages except one and another internal redirect of a certain domain – Apache

I want to redirect all request of one particular domain to another, except for one page request. I hope my attempt explains what I try to do: RewriteEngine on Rewritecond %{HTTP_HOST} !^host.mysite.com RewriteRule ^link/([^/]+)/([^/]+)/([^/]+)$ dokument_by_link.php?$1=1&document_type=$2&value=$3 [NC,L] Rewritecond %{HTTP_HOST} !^host.mysite.com RewriteCond…

VIEW QUESTION
Back To Top
Search