Been using X2 for a while now but have never had need for url rewrite until now.
I am installing a new site that I have been running on Apache with .htaccess
Can anyone please tell me how to make this .htaccess into url rewrite?
Options +FollowSymlinks
Options -indexes
RewriteEngine on
RewriteBase /
RewriteRule ^\.htaccess$ - [F]
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteRule (.*) /index.php
Thanks