Redirect from one directory to another with mod_rewrite

前端 未结 2 526

The following is my directory structures:

admin\\
controls\\
images\\
media\\
lib\\
models\\
views\\
index.php
.htaccess

The following is m

2条回答
  •  北荒
    北荒 (楼主)
    2021-01-12 22:33

    Change the rule as follow:

    RewriteEngine On 
    RewriteRule ^admin/images/(.*) images/$1
    

    And put your .htaccess in your document root, or however in the '/admin' parent folder.

提交回复
热议问题