Add Trailing Slash .htaccess

后端 未结 3 740
别那么骄傲
别那么骄傲 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:22

    RewriteCond %{REQUEST_URI} !(/$|\.) 
    RewriteRule (.*) %{REQUEST_URI}/ [R=301,L] 
    

提交回复
热议问题