标签: .htaccess nginx
我试图转换以下NGINX规则:
location = /js/index.php/x.js { rewrite ^(.*.php)/ $1 last; }
到.htaccess。我试过了:
RewriteRule ^/js/index.php/x.js ^.*\.php
但它不起作用。
请帮忙。感谢
答案 0 :(得分:1)
尝试:
RewriteRule ^(js/index\.php)/x\.js $1