Remove trailing slashes

后端 未结 4 1717
清歌不尽
清歌不尽 2021-01-19 00:11

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

4条回答
  •  抹茶落季
    2021-01-19 00:24

    Have you tried adding:

    RewriteBase /public
    

    to the .htaccess file in the public folder, to get:

    
        RewriteEngine On            
        RewriteBase /public
    
        RewriteRule (.*)/$ $1 [R,L]
    
        RewriteCond %{REQUEST_FILENAME} !-d
        RewriteCond %{REQUEST_FILENAME} !-f         
        RewriteRule ^(.*)$ index.php?url=$1 [PT,L]
    
    

提交回复
热议问题