| View previous topic :: View next topic |
| Author |
Message |
xplan
Joined: 30 Jul 2010 Posts: 23
|
Posted: Jun 03, 2011 3:39 am Post subject: Can i change word free in My affiliate Link |
|
|
from my account can i change word free to other word like example below
because word "free" will make misunderstand to some user about it
| Code: | | http://domain.com/free1.html |
to
| Code: | | http://domain.com/ref1.html |
by change word in this line from
| Code: | | <TR><TD><TMPL_VAR lang_my_affiliate_link>:</TD><TD colspan=2><a href="<TMPL_VAR site_url>/free<TMPL_VAR usr_id>.html"><TMPL_VAR site_url>/free<TMPL_VAR usr_id>.html</a></TD></TR> |
to
| Code: | | <TR><TD><TMPL_VAR lang_my_affiliate_link>:</TD><TD colspan=2><a href="<TMPL_VAR site_url>/ref<TMPL_VAR usr_id>.html"><TMPL_VAR site_url>/ref<TMPL_VAR usr_id>.html</a></TD></TR> |
if change is it make site effct ? |
|
| Back to top |
|
 |
admin Site Admin

Joined: 22 Mar 2006 Posts: 1281
|
Posted: Jun 03, 2011 6:49 am Post subject: |
|
|
| You need to change .htaccess as well. |
|
| Back to top |
|
 |
xplan
Joined: 30 Jul 2010 Posts: 23
|
Posted: Jun 03, 2011 11:29 am Post subject: |
|
|
in .htaccess from root ( htdocs folder )
| Code: | | RewriteRule ^free([0-9]+)\.html$ /cgi-bin/index.cgi?op=registration&aff_id=$1 [L] |
to
| Code: | | RewriteRule ^ref([0-9]+)\.html$ /cgi-bin/index.cgi?op=registration&aff_id=$1 [L] |
this is working
can use | Code: | | " referral/ " instead of " free " |
|
|
| Back to top |
|
 |
|