Raffy
Regular Member
- Nov 30, 2012
- 211
- 646
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:
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:
Hope that makes sense. This method should save you a lot of time in the long run.
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.