ujang kelabu
ujang kelabu

Reputation: 151

Redirect specific page with query using htaccess

for example

mydomain.com/jobresultpage?what=&where=Arkansas

redirect to

yourdomain.com/jobresultpage?what=&where=Arkansas

but other page like

mydomain.com/about.html

mydomain.com/contact.html

not redirect..

Upvotes: 0

Views: 51

Answers (1)

Ulrich Palha
Ulrich Palha

Reputation: 9529

Try adding the rules below to the .htaccess file located in the root directory of mydomain.com

RewriteEngine On
RewriteBase /

RewriteCond %{HTTP_HOST} mydomain\.com$ [NC]
#redirect any request for jobresult to yourdomain
RewriteRule ^jobresultpage$ http://yourdomain.com%{REQUEST_URI} [NC,L,R=301]

Upvotes: 1

Related Questions