Posts: 115
Location: Tampa Bay, FL - USA
|
I'm not sure of the cpanel answer to that one... Hopefully someone else will.
You could always do a redirect with the Apache .htaccess file. You do it by adding the following code to Notepad and saving it as .htaccess (I think this is the correct code)
PHP Code:
RewriteEngine on
RewriteRule ^/~(.+) http://www.info-land.com/affiliates...?aff=gambler100
After you do that, upload the file to the root of your site (or whatever folder you want to redirect from) and it should redirect. The documentation is at: http://httpd.apache.org/docs/misc/rewriteguide.html
NOTE: If you don't see the .htaccess after you have uploaded it to your site, you will need to add "-al" (don't include quotation marks) to your LIST parameters in your FTP settings. This tells your FTP program to LIST files/folders that start with a dot.
...ACTUALLY, you may want to ad "-al" to your LIST parameters before you upload the .htaccess file to see if it is already there. You may not want to overwrite it. If it is there, just add the lines I wrote to it.
Hope that helps.
|