Hello,
I would like to launch a new project with Slim 4.
But when I want to create an alias with a RewriteBase in the .htaccess as I did in Slim 3, I get an error “NOT FOUND”, the subject has already been treated in another post. However the solution provided (RewriteBase does not work for me.)
Here is an example of configuration on a test machine:
VirtualHost :
ServerAdmin webmaster@localhost DocumentRoot /var/www/html/ Alias "/api" "/var/www/html/wbs/slim4/public" <Directory "/api"> Options Indexes FollowSymLinks MultiViews AllowOverride All Order allow,deny Allow from all </Directory>
.htaccess :
RewriteEngine On
RewriteBase /api
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [QSA,L]
Thank you in advance for your ideas or solutions.