We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
Since Moodle has the $CFG->routerconfigured configuration, I’m curious if we need to install mod_rewrite by default?
$CFG->routerconfigured
So when the user sets the config to true and then adds .htaccess with the following configuration:
true
RewriteEngine On RewriteRule ^api/rest/v2/openapi.json$ r.php/api/rest/v2/openapi.json [L]
The router can function properly.
The text was updated successfully, but these errors were encountered:
No need for mod_rewrite:
FallbackResource /r.php
Sorry, something went wrong.
https://docs.moodle.org/405/en/Apache#Routing
#196
Thanks, @andrewnicols !
No branches or pull requests
Hi,
Since Moodle has the
$CFG->routerconfigured
configuration, I’m curious if we need to install mod_rewrite by default?So when the user sets the config to
true
and then adds .htaccess with the following configuration:The router can function properly.
The text was updated successfully, but these errors were encountered: