This question already has an answer here:
i have a url which looks like
https://sparkle.000webhostapp.com/movie.php?id=16
i want to change it as
https://sparkle.000webhostapp.com/movie/16
i have created .htaccess file as
Options -MultiViews
RewriteEngine On
# redirect "/movie.php?id=xxx" to "/movie/xxx"
RewriteCond %{THE_REQUEST} \s/movie\.php\?id=([0-9]+)\s [NC]
RewriteRule ^ /movie/%1? [R=301,L]
# internally rewrite "/movie/xxx" to "/movie.php?id=xxx"
RewriteRule ^movie/([0-9]+)$ /movie.php?id=$1 [L]
but the problem is the style file ,i.e.,css file is not loaded. no styles are defined in the link
</div>