Forum Moderators: phranque
In the process he redirected the url from the server where the board and galleries to the main board on the other host so that when you clicked our site name .net you got the main site home page which is our site name com.
Anyway that was almost 5 months ago and I didn't even know he did it. He and his wife are long gone and now none of my galleries or my forum can update or galleries be backed up and we are having constant database problems and slowness and malfunctions on the forum because their .net url isn't directed to the .net servers.
This is what support told me after it took them almost 5 months of ignoring me or telling me nothing was wrong when it was. They finally found it after we are having critical database and server issues because of it. They refuse to fix it and won't answer my emails or anything.
All they told me is to go to .htaccess and by adding entries in my .htaccess it should remove the redirect. They didn't tell me what to enter or anything. I have been up for 36 hours now trying to find out how to fix this. I did find instructions to redirect the redirect and tried that and it did remove it but then you couldn't access any of the boards at all.
We do not have a website or home page or anything index.html or index.php on this site it merely hosts our boards. Can someone please tell me what to do and give me the appropriate way to enter it (code or whatever).
I have 6 months of back breaking work in this site and over 8,000 photos and I just can't bear to lose it and it is falling apart in increments since yesterday. Please know that as far as databases I know absolutely nothing but I'm a quick study and can follow directions if they are written in layman's terms.
Sorry this is so long this is such a nightmare. And thank you to any of you who can help.
Theresa
[edited by: txbakers at 2:36 am (utc) on April 3, 2006]
[edit reason] clarify [/edit]
Theresa
Welcome to WebmasterWorld!
In most cases, you'd be looking for example.net/.htaccess as the path to the file we need to see. However, this URL is unlikely to be accessible via HTTP (because it could cause serious security problems to allow it to be HTTP-accessible), so you'll have to get the file using FTP or your site's "Control Panel." Without looking at that code, there's little that we (or you) can do about this problem.
Jim
DirectoryIndex index.php
order allow,deny
allow from all
deny from (this is my ip address)
#Redirect /example.net http://www.example.com/new.html
[edited by: jdMorgan at 5:39 pm (utc) on April 3, 2006]
[edit reason] Removed specifics per TOS. [/edit]
You're going to need to look up these directives, and understand what they do -- There's no way we can give you a 'quick fix' here without having full access to both of your servers, and that might be a rather serious security problem for you...
This code doesn't make sense for what you describe, and it also sounds like you may be looking at the wrong server. Instead of trying to 'redirect it back' --which if you think about it, would just lead to an infinite redirection loop-- you need to remove the original redirect, or to make it conditional, so that your DB apps can work.
# Define the file to be served for "example.net/" requests
DirectoryIndex index.php
#
# The following code should block your IP address' [url=http://httpd.apache.org/docs/1.3/mod/mod_access.html]access[/url] to your own site... Not recommended!
order allow,deny
allow from all
deny from (this is my ip address)
#
# This [url=http://httpd.apache.org/docs/1.3/mod/mod_alias.html]redirect[/url] line does nothing because the leading "#" makes it a comment line, and because
# the syntax for the 'from' URL-path is incorrect.
#Redirect /example.net http://www.example.com/new.html
You might also want to look into the usability and SEO-related forums and threads [webmasterworld.com] on this site, in order to get your site listed higher in the search results and improve click-throughs while the revenue opportunity is compelling. Of paricular concern is the pull-down navigation system and lack of text on your home page. (That said, please note that we do not do site reviews here at WebmasterWorld, and that posting your own URL in threads is against the Terms of Service.)
Jim