How do I do this with my domain name?

I recommend you do the redirects dynamically through htaccess so you don't have to waste time making a separate page for every model.

Wordpress is optional but you need a server running apache. If you already have a .htaccess file on your server then just paste this line in:

Code:
RewriteRule ^/?(.*)$ http://chaturbate.com/$1 [NC,L]

You'd need to add in your affiliate url but mydomain.com/model1 would redirect to chaturbate.com/model1, mydomain.com/model2 to chaturbate.com/model2, etc

If your website doesn't already have a htaccess file then make a new file named .htaccess, paste this in, and upload it to where ever the root directory for your domain is located:

Code:
RewriteEngine on
RewriteBase /

RewriteRule ^/?(.*)$ http://chaturbate.com/$1 [NC,L]

Hope that makes sense. This method should save you a lot of time in the long run.
 
I recommend you do the redirects dynamically through htaccess so you don't have to waste time making a separate page for every model.

Wordpress is optional but you need a server running apache. If you already have a .htaccess file on your server then just paste this line in:

Code:
RewriteRule ^/?(.*)$ http://chaturbate.com/$1 [NC,L]

You'd need to add in your affiliate url but mydomain.com/model1 would redirect to chaturbate.com/model1, mydomain.com/model2 to chaturbate.com/model2, etc

If your website doesn't already have a htaccess file then make a new file named .htaccess, paste this in, and upload it to where ever the root directory for your domain is located:

Code:
RewriteEngine on
RewriteBase /

RewriteRule ^/?(.*)$ http://chaturbate.com/$1 [NC,L]

Hope that makes sense. This method should save you a lot of time in the long run.

Thanks so much! Yea, it makes sense for the most part but setting it up and getting it to work is what's confusing me.

I'm not sure if my hosting is compatible with .htaccess as I'm using a free host since I'm not using any disk space. I'm just redirecting mydomain/model name to said model on said site.

How do I tell if it's working or not? I added the second code you mentioned to my root directory and now I'm unsure what to do next.

Edit: I think I may have figured it out. Wow man you are a life saver!! Thank you so much!
 
Last edited:
Back
Top