Here is the .htaccess file:
Code: Select all
Options -Indexes
RewriteEngine on
RewriteRule ^(.*)$ index.php?RESOURCE=$1 [L,QSA]
I would like to get this working without adding parameters to the url.
Moderator: General Moderators
Code: Select all
Options -Indexes
RewriteEngine on
RewriteRule ^(.*)$ index.php?RESOURCE=$1 [L,QSA]