I\'d like to work with pages without trailing slashes. So now I want my URL\'s with an trailing slash to redirect (using .htaccess) to the same URL without the trailing slas
Have you tried adding:
RewriteBase /public
to the .htaccess file in the public folder, to get:
.htaccess
RewriteEngine On RewriteBase /public RewriteRule (.*)/$ $1 [R,L] RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ index.php?url=$1 [PT,L]