I am new to this mod_rewrite.
I have been successfully able to rewrite the URL something like this:
http://mydomain.com/products/12
to this: http://mydomain.com/products.php?prodId=12
But when I give http://mydomain.com/products/12
in the address bar, the css and js files are not loaded.
But when I access http://mydomain.com/products.php?prodId=12
the js and css get loaded properly. Please let me know if I am missing something.
My .htaccess looks like this:
Options +FollowSymlinks
RewriteEngine on
RewriteRule ^products/([0-9][0-9])/$ /products.php?prodId=$1 [L]
My css and js folders are also in the same folder.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…