nginx下的重定向配置
程序员文章站
2022-05-04 21:45:09
...
在apache下运行正常。但移到nginx下就不正常了。不知要怎么配置?
以下是.htaccess内容:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
不知在nginx.conf里要怎么配置才能正常????
以下是.htaccess内容:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
不知在nginx.conf里要怎么配置才能正常????
回复讨论(解决方案)
http://www.ccvita.com/319.html
Rewrite “^(.*)$” index.php/$1 [QSA,PT,L]
是直接这样吗?
上一篇: phpini的加载位置
下一篇: drupal,该怎么处理
推荐阅读