RewriteEngine On
RewriteBase /packingo/

# Services
RewriteRule ^services/?$ service.php [NC,L]
RewriteRule ^services/([a-z0-9-]+)/?$ service.php?slug=$1 [NC,L]

# Locations

RewriteRule ^location/([a-z0-9-]+)/?$ location.php?slug=$1 [L]

RewriteRule ^locations/?$ location.php [L]

# Blog
RewriteRule ^blog/?$ blog.php [L]
RewriteRule ^blog/([a-z0-9-]+)/?$ blog.php?slug=$1 [L]



# Static pages
RewriteRule ^about-us/?$ about.php [L]
RewriteRule ^contact-us/?$ contact.php [L]
RewriteRule ^get-quote/?$ quote.php [L]
RewriteRule ^gallery/?$ gallery.php [L]
RewriteRule ^faq/?$ faq.php [L]


RewriteRule ^privacy-policy/?$ privacy.php [L]
RewriteRule ^terms-of-service/?$ terms.php [L]


