htaccess RewriteBase

后端 未结 1 1312
一个人的身影
一个人的身影 2020-12-30 11:45

I have two directories in my root: /dev and /live.

All content inside these directories have relative paths such as /css/style.css

相关标签:
1条回答
  • 2020-12-30 12:11

    RewriteBase lets you fix issues with how URLs get translated to file paths and back again. It's not for what you're using it for. Use a standard RewriteRule

    RewriteCond %{REQUEST_URI} !^/live
    RewriteRule ^(/?)(.*) /live/$2
    
    0 讨论(0)
提交回复
热议问题