Here is my htaccess content file.
Options +FollowSymlinks
RewriteEngine On
RewriteCond %{REQUEST_URI} !\.(?:css|js|jpe?g|gif|png)$ [NC]
RewriteRule ([a-z]+)$ astc/accueil.php?page=$1 [L]
RewriteRule ([a-z]+)/([1-9]+)$ astc/accueil.php?page=$1&id=$2 [L]
When I access to a page with one parameter like "localhost/assoc/accueil", I have no problem but for a page with 2 parameters like "localhost/assoc/accueil/2" The CSS isn't applying.
Any idea please ? Thanks.