I have links like this - http://example.com/index.php?q=about
and I want to make them look like this - http://example.com/about
Currently I am using the Rewrite Rules
VirtualHost {
* {
Pattern = .*
RewriteRules {
dirindex {
pattern = (.*)/$
to = index.php/$1
qsa = true
}
}
}
}
If I visit http://example.com/about I am getting a 404 File Not Found
I am doing this for Drupal. Guidelines for clean urls : https://drupal.org/getting-started/clean-urls