- this is the first time to me to rewrite url using .htaccess.
- when I rewrite the url my css was missing
here is my code:
RewriteEngine On RewriteBase /blog/ RewriteCond %{REQUEST_FILENAME} !-d [NC] RewriteCond %{REQUEST_FILENAME} !-f [NC] RewriteRule ^([0-9]+)/([^/.]+)/?$ catview.php?ctid=$1&cet_slug=$2 [QSA,L]
I need the url: blog/9/iphone
It's working but missing css! Can anyone help me?