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
  • 30,233
  • 76
  • 247
  • 468

1 Answers1

1
RewriteEngine On
RewriteRule ^(.*)$ index.php
Hrishikesh
  • 978
  • 6
  • 22