Add Trailing Slash .htaccess

后端 未结 3 739
别那么骄傲
别那么骄傲 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 use this format in .htaccess,

    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_URI} !(.*)/$
    RewriteRule ^(.*)$ https://%{HTTP_HOST}/$1/ [L,R=301]
    

提交回复
热议问题