Home >Backend Development >PHP Tutorial >Help nginx pseudo-static rules to apache

Help nginx pseudo-static rules to apache

WBOY
WBOYOriginal
2016-09-21 14:12:562876browse

求助nginx伪静态规则转为apache规则

nginx伪静态规代码如下:

try_files $uri $uri/ /index.php?$query_string;

<code>        if (!-e $request_filename) { 
          rewrite  ^(.*)$  /?/$uri last;

        }
</code>

回复内容:

求助nginx伪静态规则转为apache规则

nginx伪静态规代码如下:

try_files $uri $uri/ /index.php?$query_string;

<code>        if (!-e $request_filename) { 
          rewrite  ^(.*)$  /?/$uri last;

        }
</code>

<code class="htaccess">RewriteEngine on
 RewriteCond %{REQUEST_FILENAME} !-d 
 RewriteCond %{REQUEST_FILENAME} !-f 
 RewriteRule ^(.*)$ /?/$1 [QSA,PT,L]</code>
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn