Forum Moderators: phranque
I'm trying to get a very simple rewrite to work which is as follows;
What I want to do is turn
domain.com/this-text
into
domain.com/page.php?a=this-text
This is my code so you can tell me how wrong I was
<IfModule mod_rewrite.c>
Options +Indexes
Options +FollowSymLinks
RewriteEngine on
RewriteBase /
RewriteRule /(.*)$ page.php?a=$1 [L]
</IfModule>
The exclusion list I present is a minimum; You may have many other files that should not be rewritten for efficiency's sake.
Jim