0

I am trying to forward all http requests on my virtual host to an index.php file in my apache servers document root.

would the following .htacess file do that ?

RewriteEngine On
RewriteRule . index.php
user1592380
  • 34,265
  • 92
  • 284
  • 515

1 Answers1

1
RewriteEngine On
RewriteRule ^(.*)$ index.php
Hrishikesh
  • 1,076
  • 1
  • 8
  • 22