Reputation: 311
How to rewrite every URI to the index.php?
RewriteRule . index.php
this rewrites only files in current directory, so example.org/folder does not rewrite.
Upvotes: 1
Views: 113
Reputation: 143886
If that rule is in an htaccess file in your document root, then it will redirect everything. Instead of .
, it should be .*
:
RewriteEngine On
RewriteRule .* index.php
Upvotes: 1