HTML interesse |
|
Hallo,
Ik heb een .htaccess bestand die ervoor zorgt dat je naar bijv. bestand.php?id=gebruikersnaam gaat als je intypt: www.domein.nl/gebruikersnaam.
Maar nu wil ik nog variabelen meenemen, hoe doe ik dit in het .htaccess bestand?
Dit is mijn code:
<IfModule mod_rewrite.c>
# Turn on Engine
RewriteEngine on
# Check if REQUEST_FILENAME is an existing file in the DOCUMENT_ROOT
RewriteCond %{REQUEST_FILENAME} !-f
# Check if REQUEST_FILENAME is an existing dir in the DOCUMENT_ROOT
RewriteCond %{REQUEST_FILENAME} !-d
# ReWrite the URL to profile page
# with GET variable 'name' set with the REQUEST_FILENAME value
RewriteRule ^(.+) http://www.domein.nl/showpro.php?pro=$1 [L]
</IfModule>
Alvast bedankt
|