apache 重写 > nginx 重写

apache 重写 > nginx 重写

我终于让 nginx 运行起来了

我的网站是用 codeigniter 制作的,我从我的 .htaccess 中获得了这个旧的重写

#map all request urls to a specific controller method
RewriteRule ^(.*)$ index.php?/welcome/domain/$1 [L]

我的问题是如何将其转换为有效的 nginx 重写规则?

答案1

尝试使用apache-to-nginx 转换器。它在大多数情况下都有效。使用您的示例,它返回:

rewrite ^/(.*)$ /index.php?/welcome/domain/$1 last;

相关内容