Reset htacces for sub-folders

前端 未结 4 442
野趣味
野趣味 2021-01-04 19:04

I have a htacces file in my root folder with some basic code in it. But I want that all those instructions get ignored in the directory \"voxelforum.com\". How can I achive

4条回答
  •  野趣味
    野趣味 (楼主)
    2021-01-04 19:58

    Oddly, you may first need to turn off rewrite and then put it on again

    Put a .htaccess file in the subfolder and add these 2 lines:

    RewriteEngine Off
    RewriteEngine On
    

    Add your rewrite rules below


    This worked for me whereas simply adding RewriteEngine On did not.

提交回复
热议问题