httydolphin 发表于 2023-2-15 10:17:34

【已完成】centos下的nginx伪静态规则怎么转换windows下的apache

本帖最后由 堡塔运维香菜卷 于 2023-3-30 14:12 编辑

centos下的nginx伪静态代码如下:

location / {      try_files $uri $uri/ /index.php$is_args$query_string;}
------------------------怎么转换成windows下的apache伪静态规则

堡塔运维 发表于 2023-2-15 10:56:44

您好,您可通过转换工具进行操作,
链接:https://www.toolnb.com//tools/rewriteTools.html

httydolphin 发表于 2023-2-16 16:45:22

试过了转换不出来才上论坛求助大神们帮我写一下

httydolphin 发表于 2023-2-16 17:49:05

堡塔运维 发表于 2023-2-15 10:56
您好,您可通过转换工具进行操作,
链接:https://www.toolnb.com//tools/rewriteTools.html ...

试过了转换不出来才上论坛求助大神们帮我写一下

香菜卷 发表于 2023-3-30 14:12:26

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php?$1
您好,您试试这段是否可以。
页: [1]
查看完整版本: 【已完成】centos下的nginx伪静态规则怎么转换windows下的apache