hello guys, its been a while since I used htaccess file, but I know how to use it.
but the only problem I face is when using in this way
I have page for view video
watch.php?v=qvLqn2NEsOE&title=Networkplus_tutorials.html
first I've create rewrite rule in .htaccess fileRewriteRule ^v-(.*)-(.*).html$ watch.php?v=$1&title=$2
so if the url isv-qvLqn2NEsOE-Networkplus_tutorials.html
it will work perfectly.
but when I change it toRewriteRule ^v/(.*)/(.*).html$ watch.php?v=$1&title=$2
the page shows but without CSS :( , what should I do before change for this rule in htaccess ?