Laravel 5: prohibit redirection when URL ends with "/"

My app url is:

http://localhost/my-app 

And my admin panel is here:

 http://localhost/my-app/admin 

But when I try to access the admin panel using this URL:

 http://localhost/my-app/admin/ 

It redirects me to:

 http://localhost/admin 

Is there a way to prevent this if this happens? I also want to access the admin panel from this url.

My htaccess file looks like this:

 <IfModule mod_rewrite.c> <IfModule mod_negotiation.c> Options -MultiViews </IfModule> RewriteEngine On # Redirect Trailing Slashes If Not A Folder... RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)/$ /$1 [L,R=301] # Handle Front Controller... RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^ index.php [L] </IfModule> 
+5
source share
1 answer

I can not give a comment, so I will try here.

you need to remove this line from .htaccess

 RewriteRule ^(.*)/$ /$1 [L,R=301] 

or add # before it for comments.

0
source

Source: https://habr.com/ru/post/1235598/


All Articles