-
-
Notifications
You must be signed in to change notification settings - Fork 642
Drupal 8 not recognizing clean url support #945
Comments
@shawnachieve - I've noticed the same thing. Not entirely sure why Drupal fails that initial check—my guess is a bug in Drupal core :) It would be nice to figure out what's happening, but as it doesn't really cause any functional issues, I haven't ever had it as a priority. |
I'm still working through what's going on, but so far what I can tell is that the following rewrite command in the .htaccess file is not triggering:
The above command is suppose to append a "rewrite" query parameter to the core/install.php URL. If the install script doesn't see that rewrite parameter it assumes that mod_rewrite is disabled. So far what I've seen with mod_rewrite debugging enabled is that this rewrite rule runs against everything but "core/install.php" (e.g. CSS files, theme files, etc.) Still trying to figure out the underlying cause though. |
Weird... I wonder if somehow the ProxyPass setup is not proxying that particular rewrite correctly or something? Maybe it's an Apache bug? |
Looks like Modifying this line https://github.com/geerlingguy/drupal-vm/blob/master/default.config.yml#L109 to Will allow this rewrite rule to work however Apache has a performance warning in their docs for this configuration - https://httpd.apache.org/docs/2.4/rewrite/flags.html#flag_p
|
For now, I'm going to close this as a won't fix for two reasons:
Thanks! |
Fixed in #1086. |
Whenever I setup a new DrupalVM site for Drupal 8 (or try to reinstall an existing D8 site), Drupal always comes up and says that DrupalVM does not support clean URLs.
The actual message that shows up during the requirements check is:
This message comes up whether I install through the browser going to http://mysite.local/core/install.php or via drush site-install.
I am able to install the site and everything works correctly if I click the "continue anyway" link on the install.php page, but there doesn't seem to be a way around this from drush.
Since I haven't seen anyone else posting about this issue I'm assuming it's something specific to my setup.
Any thoughts on what may be causing this and how to fix it?
Here is some info on my setup:
Thanks.
The text was updated successfully, but these errors were encountered: