Add Trailing Slash .htaccess

后端 未结 3 735
别那么骄傲
别那么骄傲 2020-11-30 07:21

I\'m trying to get the following effect (using this local file http://localhost/[company_name]/[project_name]/.htaccess):

http://localhost/[comp         


        
3条回答
  •  离开以前
    2020-11-30 07:29

    Please add below lines top of .htaccess file

    RewriteEngine on
    #Add Trailing slash for end of the URL
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^(.*[^/])$ /$1/ [L,R]
    

提交回复
热议问题