iamart
iamart

Reputation: 311

Apache redirect all files

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

Answers (1)

Jon Lin
Jon Lin

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

Related Questions