I am trying to change the url that show in the addressbar. Code in .htaccess:
RewriteEngine On # Turn on the rewriting engine
RewriteRule ^Home?$ index.php [NC,L]
RewriteRule ^about-us?$ aboutus.php [NC,L]
RewriteRule ^contact?$ contact.php [NC,L]
RewriteRule ^products?$ products.php [NC,L]
RewriteRule ^products/led-bulb?$ led-bulb.php [NC,L]
Explain: All page in the same directory and 4 first rewrite rule is ok, but the last rewrite rule has problem.(products/led-bulb directory not exist). Problem: last rule when loaded the [led-bulb.php] it not loaded any style and show the page without any style and design.