Greetings!
After numerous searches, and still no luck, I've decided to ask WF for support. This is also my first post!
I'm sure this is a simple issue. But when it comes to htaccess/mod_rewrite I am stumped, or I overlook things.
I am trying to rewrite: www.example.com/index.php?app=points&module=points&controller=dashboard
To: www.example.com/dashboard
My current htaccess:
<IfModule mod_rewrite.c>
Options -MultiViews
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule \.(js|css|jpeg|jpg|gif|png|ico|map)(\?|$) /404error.php [L,NC]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
I have tried adding:
RewriteRule ^([^/]*)$ /index.php?app=points&module=points&controller=$1 [L]
But then I get a 500 Internal Server Error
Any help, greatly appreciated.
teemogq
Hey!
I also posted this question on Stack Overflow, if you're a contributor, you can earn for answering.
Link: https://stackoverflow.com/questions/63821427/url-rewriting-issues
Thanks for your help!