I have had this whois script for sometime now... decided to finally set it up. I followed the bad directions on setting it up, and it works to a certain point. It will add the URL, but you can not open any urls once they have been added, and there is at least one page that does not open either... here are a couple urls. Home Page http://www.gpjwhois.com Remove Page - (wont open) http://www.gpjwhois.com/remove/ If you think it is an easy fix then let me know what I am doing wrong. If it is not an easy fix, then let me know that too.... Thanks ps. Just before I posted this. I tried saving one of the whois urls in the post, it would not save. It said the whois url is a redirect back to the home page, so maybe this will help. When you click on a whois url, it does not open the page and reloads the home page...
btw, here is the htacess file; Maybe there is a glitch in the file causing the whois links to redirect back to the home page: <IfModule mod_rewrite.c> # Disable Directory Listing Options -Indexes Options +FollowSymLinks RewriteEngine On # Redirect non-www to www # RewriteCond %{HTTP_HOST} !^www\. [NC] # RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301, L] # Here are some example of RewriteBase values: # Installation Path RewriteBase line # ========================== ========================== # http://www.yoursite.com/ RewriteBase / # http://www.webstat.yoursite.com/ RewriteBase / # http://www.yoursite.com/webstat/ RewriteBase /webstat/ # RewriteBase / # Prevents requests for /index.php from being rewritten, to avoid infinite loops. RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . index.php [L] </IfModule> <IfModule mod_deflate.c> AddOutputFilterByType DEFLATE text/plain AddOutputFilterByType DEFLATE text/html AddOutputFilterByType DEFLATE application/xhtml+xml AddOutputFilterByType DEFLATE application/xml AddOutputFilterByType DEFLATE text/xml AddOutputFilterByType DEFLATE text/css AddOutputFilterByType DEFLATE text/javascript AddOutputFilterByType DEFLATE application/javascript AddOutputFilterByType DEFLATE application/x-javascript </IfModule> # Maintenance Mode: Block access to all except specified IP Address # when activating remove # from following 3 lines and replace 127.0.0.1 with your IP address # order deny,allow # deny from all # allow from 127.0.0.1 Code (markup):