提问人:Pecana 提问时间:11/7/2023 更新时间:11/7/2023 访问量:24
将 .htacces 转换为 nginx 配置
Convert .htacces to nginx configuration
问:
我在将 .htaccess 转换为 nginx 规则时遇到问题,我在线尝试了所有可用的规则转换器和之前回答过的问题,但似乎没有人提供正确的解决方案。我需要这个,因为 PHP 8.x Azure 服务计划现在附带 Nginx 而不是 Aapache。这里的 .htaccess 可以完美地与 Apache 配合使用,但在 Nginx 上却不能
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} ^/system.*
RewriteCond %{REQUEST_URI} ^/public.*
RewriteRule ^(.*)$ index.php?/$1 [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)$ index.php?/$1 [L]
</IfModule>
有什么帮助吗? 谢谢
答: 暂无答案
评论