在apache下运行正常。但移到nginx下就不正常了。不知要怎么配置?
以下是.htaccess内容:
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
</IfModule>
不知在nginx.conf里要怎么配置才能正常????NginxApachephp