我尝试使用以下规则,但它不起作用。 Proftpd v1.3.4a。 有人有什么想法,有什么不对吗? 更改或创建目录时,规则必须将反斜杠更改为斜杠
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteLog /path/to/proftpd/rewrite.log
# Use the replaceall internal RewriteMap
RewriteMap replace int:replaceall
RewriteRule (.*) "${replace:!$1!\\\\!/}"'
</IfModule>