htaccess rewrite url remove subdirectory

前端 未结 2 1341
心在旅途
心在旅途 2020-12-01 11:28

I\'m trying to rewrite

http://www.example.com/directory/folder/*

to

http://www.example.com/directory/*

the htacce

相关标签:
2条回答
  • 2020-12-01 11:32

    This is what I ended up doing :

    Options +FollowSymLinks
    RewriteEngine on
    RewriteCond %{REQUEST_URI} !(.*)folder 
    RewriteRule ^(.*)$ folder/$1 [L]
    
    0 讨论(0)
  • 2020-12-01 11:45

    What about

    RewriteEngine on
    RewriteRule ^folder/(.*) /directory/$1 [L]
    

    ?? Or you can go without [L] or use [R] instead.

    0 讨论(0)
提交回复
热议问题