If you go to my blog http://www.randompri.com/blog/ you see that if you click on a link on the top where it says About it redirects you to my bidding directory. Im sure its because of my phplinkbid script, but i have no clue how to fix it. Anyone know?? Thanks - Prilep
This is just a semi-educated guess. The .htacess file for the domain has an onerror redirect to the main page of the site which is your bid directory. If you create an about page it should solve the problem. You can test that with something as simple as Coming soon on your about page.
Yes go to http://www.randompri.com/blog/ and click the about link at the top and look where it takes you . - Prilep
create a file called .htacess in you /blog directory add this code <IfModule mod_rewrite.c> RewriteEngine On RewriteBase /blog/ RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /blog/index.php [L] </IfModule> Code (markup):
Thanks mikey! Now it works. Hope this doesn't mess up my phplinkBid. I can't give green rep to you because i already gave you one before so i have to spread some more love haah. - Prilep