login  Naam:   Wachtwoord: 
Registreer je!
 Forum

mod rewrite probleem

Offline Patje - 28/02/2005 19:56 (laatste wijziging 28/02/2005 22:34)
Avatar van PatjeNieuw lid Hallo,

Ik heb een mod rewrite probleem.

Ik wil van www.mijnpagina.nl/test/index.php?page=contact
www.mijnpagina.nl/test/contact maken.

Mijn .htaccess bestand staat in de www map en ziet er als volgt uit:

Options FollowSymlinks
RewriteEngine On
RewriteRule ^([^/\.]+)/?$ index.php?page=$1 [L]

In de www map staat een map test met daarin:

- index.php
- startpagina.php
- contact.php

index.php:
  1. <html>
  2.  
  3. <head>
  4.  
  5. <title>Index</title>
  6.  
  7. <link rel="stylesheet" href="css/alles.css" type="text/css">
  8.  
  9. </head>
  10.  
  11. <body bgcolor="#ffffff" leftmargin="0" marginwidth="0" topmargin="0" marginheight="0">
  12.  
  13.  
  14. <table width="500" height="300" border="0" cellpadding="0" cellspacing="0" align="center">
  15. <tr>
  16. <td><a onfocus="this.blur()" href="index.php?page=startpagina">Startpagina</a> <a onfocus="this.blur()" href="index.php?page=contact">contact</a></td>
  17. </tr>
  18. <?php
  19. switch (strtolower($_GET['page']))
  20. {
  21. case "startpagina":
  22. include("startpagina.php");
  23. break;
  24. case "contact":
  25. include("contact.php");
  26. break;
  27. default:
  28. include("startpagina.php");
  29. break;
  30. }
  31. ?>
  32. <tr>
  33. <td></td>
  34. </tr>
  35. </table>
  36.  
  37. </body>
  38.  
  39. </html>


startpagina.php:
  1. <tr>
  2. <td>Startpagina</td>
  3. </tr>

contact.php:
  1. <tr>
  2. <td>Contact</td>
  3. </tr>

Ik wil dat het menu in beeld blijft en de content er tussen wisselt.
Ik krijg het geheel niet aan het werk, wat doe ik fout?

Alvast bedankt.

0 antwoorden

Gesponsorde links
Er zijn nog geen reacties op dit bericht.
Dit onderwerp is gesloten.
Actieve forumberichten
© 2002-2024 Sitemasters.be - Regels - Laadtijd: 0.211s