Can I make a dynamic .htaccess file?

后端 未结 3 2120
自闭症患者
自闭症患者 2020-12-30 17:14

Can I make my .htaccess be generated with php?
I would like to use php to dynamicly create my htaccess file from information from the database.
It would save me the

3条回答
  •  忘掉有多难
    2020-12-30 18:00

    You can read and write files with the file system functions, for example:

    $data = <<

    But it would be more flexible if you use one static rule that redirect the requests to your PHP file that then does the rest.

提交回复
热议问题