klynton
The documentation says to "Create a new PHP+Apache application" but when I looked to create a new application, the list of types includes:
PHP-FPM with Nginx
PHP-CGI with Apache
PHP Apache Symlink
I am guessing that "PHP+Apache" means I should select #2 above, which is what I did.
My main site is "mythsoc" and my PHP-CGI application is "redirects". In the ~/apps/redirects folder there is only an .htaccess file, which contains:
RewriteEngine On
RewriteBase /
RewriteRule .+$ https://www.mythsoc.org/$1 [R=301,L]
All this is according to the instructions in the online documentation. The only thing I can think of that might be afffecting it is that my DNS is not yet live. I have been waiting to change my DNS entries to point here rather than to the old host until I was sure that everything was working. Could that cause this problem? If so, what would I need to do to set up a valid test of the URL redirect function?