Setting Clean URL’s in X-cart
This tutorial goes through step by step how to set up Clean URL’s on your X-cart store. Several sections of code are refferenced in the video, you can find them below:
# Clean URLs [[[
Options +FollowSymLinks -MultiViews -Indexes
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} !^/(payment|admin|provider|partner)/
RewriteCond %{REQUEST_FILENAME} !\.(gif|jpe?g|png|js|css|swf|php|ico)$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule ^(.*)$ dispatcher.php [L]
# /Clean URLs ]]]
As always if you have any questions feel free to drop us a comment below.
Leave a reply