Hello, on my web site i want to change url's from (just exemple):
site.com/showCategory.php?catId=34
to:
site.com/category/34/
Here is the contents of my .htaccess file:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^affichage/([0-9]+)$ /affichage/$1/ [R]
RewriteRule ^affichage/([0-9]+)/$ /affichage.php?n=$1
</IfModule>
It works, but the problem is all urls (href tag) in affichage.php
have "/affichage/29/" and the source for the css file becomes http://www.site.com/category/34/css/style.css
.