【发布时间】:2018-07-10 19:05:54
【问题描述】:
我正在尝试转换以下 NGINX 规则:
location = /js/index.php/x.js { rewrite ^(.*.php)/ $1 last; }
到.htaccess。我试过了:
RewriteRule ^/js/index.php/x.js ^.*\.php
但它不起作用。
【问题讨论】:
标签: .htaccess
我正在尝试转换以下 NGINX 规则:
location = /js/index.php/x.js { rewrite ^(.*.php)/ $1 last; }
到.htaccess。我试过了:
RewriteRule ^/js/index.php/x.js ^.*\.php
但它不起作用。
【问题讨论】:
标签: .htaccess
尝试:
RewriteRule ^(js/index\.php)/x\.js $1
【讨论】: