This is my first time setting up my own linux server. I am migrating from shared hosting to my own cloud. mod_rewrite and mod_proxy are loaded.
I know for sure what I have in my htaccess worked on my old host, but doesn't on my linux server.
Options +FollowSymLinks
Options -Indexes
RewriteEngine on
# This works
RewriteRule index.php / [L,R=301]
# This works
RewriteCond %{REQUEST_FILENAME}.php -f
RewriteRule !.*\.php$ %{REQUEST_FILENAME}.php
# This doesn't work
RewriteRule ^help/([^/]+)/$ /help.php?page=$1
What gives?
Thanks for your help.