【发布时间】:2014-12-31 11:02:56
【问题描述】:
我正在尝试在我的 Nginx 服务器上安装 GitList (http://gitlist.org/)。但是,安装的一部分是我使用以下代码更改了 Apache 配置文件:
<Directory "/var/www/html">
# Other lines omitted
AllowOverride All
# Other lines omitted
</Directory>
此外,在 GitList 文件夹内的 .htaccess 文件中也需要此文件:
<IfModule mod_rewrite.c>
Options -MultiViews +SymLinksIfOwnerMatch
RewriteEngine On
#RewriteBase /path/to/gitlist/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [L,NC]
</IfModule>
<Files config.ini>
order allow,deny
deny from all
</Files>
如何在 Nginx 中执行此步骤?
【问题讨论】:
标签: apache .htaccess mod-rewrite nginx