Use htaccess to mask folder name

后端 未结 2 519
梦谈多话
梦谈多话 2020-12-11 13:07

Here\'s a problem I\'m always wanting to solve with htaccess. I haven\'t found a way yet, though it looks like it should be possible - perhaps someone can help.

Let\

2条回答
  •  天命终不由人
    2020-12-11 13:59

    If I understand correctly what you want is something like this inside your .htaccess file:

    
    RewriteEngine On
    RewriteRule ^foo/$ bar/
    RewriteRule ^bar/$ foo/
    
    

提交回复
热议问题