Edit
RewriteRule . /homepage/index.php [L]
at
RewriteRule (.+) /homepage/index.php?page=$1 [L]
PS For this to work, your index.php must listen to $ _GET ['page'] and load the corresponding resource.
EDIT: without using "? Page = $ 1", your code will only display the index page for all requests that are not files or directories. I'm not sure this is what you were aiming for.
source
share