I’m working with generated paginator links and it’s an issue. Everywhere else I’ve just referenced the URL’s as /Users with no issue. I’d rather it just work as /users like it’s supposed to.
Cake 3.6.14
Fedora 28
Apache/2.4.34
PHP 7.2.14
Cake installed with composer to /var/www/school
.htaccess in /var/www/school
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^$ webroot/ [L]
RewriteRule (.*) webroot/$1 [L]
</IfModule>
.htaccess in webroot
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
</IfModule>