PHP interesse |
|
Hi,
Ik werk vanuit mijn localhost en werkt met .htaccess. Mijn project is een blog (zoals eerder vermeld)...
De link http://localhost/blog/gebruiker/ verwijst succesvol, ook http://localhost/blog/gebruiker/berichten werkt fijn.
Nu probeer ik de link http://localhost/blog/gebruiker te verwijzen naar http://localhost/blog/gebruiker/ , maar toch doet ie-het-nie...
Ook is de css opmaak van mijn blog weg, waaraan ligt dat probleem? Hier is mijn .htaccess bron:
<IfModule mod_rewrite.c>
Options +FollowSymlinks
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^/([a-z0-9-]+)$ /$1/ [NC,R=301,L]
RewriteRule ^/([a-z0-9-]+)/$ index.php?lid=$1 [L]
RewriteRule ^([a-z0-9-]+)/(.*)$ index.php?lid=$1&p=$2 [L]
</IfModule>
<IfModule mod_rewrite.c> Options +FollowSymlinks RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^/([a-z0-9-]+)$ /$1/ [NC,R=301,L] RewriteRule ^/([a-z0-9-]+)/$ index.php?lid=$1 [L] RewriteRule ^([a-z0-9-]+)/(.*)$ index.php?lid=$1&p=$2 [L] </IfModule>
|