将nginx转换为htaccess

时间:2018-01-31 15:47:23

标签: .htaccess nginx

我试图转换以下NGINX规则:

location = /js/index.php/x.js { rewrite ^(.*.php)/ $1 last; }

到.htaccess。我试过了:

RewriteRule ^/js/index.php/x.js  ^.*\.php

但它不起作用。

请帮忙。感谢

1 个答案:

答案 0 :(得分:1)

尝试:

RewriteRule ^(js/index\.php)/x\.js $1