Question : How To Munge Email Address?

I typically use http://www.addressmunger.com/ to munge my email addresses.  This time however I am placing the email address in a mysql database.  As soon as I put it in the table, the display results the correct email address but changes it from ASCII to regular characters.  How do I put ASCII characters in mysql and retain the ASCII ... OR... is there a better solution?

Answer : How To Munge Email Address?

What version of cpanel are you on?

You should be able to redirect from both the Manage Redirects page and the Parked Domains page.

If your version doesn't support it, you can do the redirects in .htaccess in public_html of the primary domain:



1:
2:
3:
4:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^domain2.com$ [OR]
RewriteCond %{HTTP_HOST} ^www.domain2.com$
RewriteRule ^(.*)$ "http\:\/\/www\.domain1\.com\/$1" [R=301,L]
Random Solutions  
 
programming4us programming4us