how to hide folder name from url using .htaccess

后端 未结 3 1201
离开以前
离开以前 2021-01-24 01:08

I have a domain example.com i want to redirect it to example.com/public but /public folder should hide from the url.

I am using the below code in .htaccess to redirect,

3条回答
  •  再見小時候
    2021-01-24 01:34

    You can try this

    RewriteEngine on
    RewriteCond %{REQUEST_URI} !^/(public)
    RewriteRule (.*) /public/$1
    

提交回复
热议问题