Problem with linking to pages

patje30

New Member
Hi people,

I've got a problem...(note: I'm a beginner) I made a website www.transfernieuws.be, but if you click on an article or any link i get:The requested URL /...../..... was not found on this server.

I think I know the problem, but can not resolve it in my admin or ftp:

The URL when you click on a link is (for example): http://www.transfernieuws.be/faq/

and it should be:
http://www.transfernieuws.be/index.php?mod=faq

so: index.php?mod= is missing in every link

Does somebody know how to arrange this problem?

It would be unbelievable thankfull,

Thanks in advance,
 

PixelPusher

Super Moderator
Staff member
essentially you are loading all your content into one page (index.php). The content that is displayed is based on what variable is passed through the function for the navigation.

For example:

function getPage ($loc, $link) {
print '
<a href="http://www.transfernieuws.be/index.php?mod='.$loc.'">'.$link.'</a>
' ;
}

Looks like you have it working okay?
 
Top