MostlyGucci
MostlyGucci

Reputation: 21

Redirect to another websites with one path

I would like to redirect some pages but I don't know how to do that.

I want to redirect to different external websites with one path.

It should be the following way:

mydomain.com/category - Redirects to an website.

mydomain.com/category/example - Redirects to another website.

Does anyone know how to do that and could explain me?

I'm looking forward to your answers!

Best Regards


Edit:
I found out by myself now.
I don't need any more help :)

Upvotes: 2

Views: 36

Answers (1)

عليلو احمد
عليلو احمد

Reputation: 47

If you have access to edit html of those pages you can add this following code to redirect:

<meta http-equiv="refresh"
   content="0; url=http://www.example.com/">

Upvotes: 2

Related Questions