Gmane
Favicon
From: <solprovider <at> apache.org>
Subject: Re: Address rewriting with mod_rewrite
Newsgroups: gmane.comp.apache.user
Date: 2008-10-07 15:29:36 GMT (13 weeks, 22 hours and 10 minutes ago)
On 10/7/08, Mauro Sacchetto <mauro.sacchetto <at> tele2.it> wrote:
> Il martedì 7 ottobre 2008 16:41:50 Krist van Besien ha scritto:
>  > Ofcourse, this is not the end. You might have to look at the links
>  > that are in the page that index.php generates...
> Not easy for me... Just learning...
>
>  > Is this by any chance a CMS you've installed? If so, which one?
> No, it's a little site create by myself
>  Thanx
>  MS

If the menus are not being generated, they are just HTML files (or PHP
files including static HTML for menus.)  Just change the links for the
homepage to the now-working URL:
   <a href="/index.php?pagina=home">Home</a>
Becomes:
   <a href="/">Home</a>
The new links will only work through Apache httpd.  Directly accessing
the application server will error for these links.

solprovider