Forum Moderators: phranque
this is Apache version 1.3.37 (Unix) my host uses
Help us out here -- how exactly did you set up the redirection -- .htaccess? What code did you use? Or did you set it up through your host's web-based control panel?
Also, could I ask you to title your posts with something more descriptive? (Like a whole sentence, not just a single word.) Thanks!
this is the .htaccess
RewriteEngine on
RewriteCond %{HTTP_HOST} ^example.ro$
RewriteRule ^(.*)$ [111.222.333.444...] [R=301,L]
CPanel version : 10.9.0-RELEASE 95
[edited by: encyclo at 3:06 pm (utc) on Dec. 9, 2006]
[edit reason] obscured specifics, see TOS [webmasterworld.com] [/edit]
If it's the last thing that you're trying to do, then this is probably a question for your host. Setting up a subdomain is generally not something you'd do on your own. Setting it to redirect somewhere is something you can handle, but not the subdomain setup itself.
I don't know what DC++ is, either.
RewriteEngine on
RewriteCond %{HTTP_HOST} ^sub.domain.ro$
RewriteRule ^(.*)$ 23.54.87.98 [R=301,L]
sth like that my .htaccess look
[edited by: D3m3ntu187 at 6:38 am (utc) on Dec. 10, 2006]
Do you have access to your logs? You can make a request for sub.domain.ro, and then check your logs (usually access.log and error.log) to see what the server did (or didn't do) with the request.
If either of these steps have not been done, then these requests will never even resolve to your server.
Jim