0

我想添加 Apache .htaccess 规则。这是来自旧服务器的 nginx:

    location ~ \.php$ {
    fastcgi_split_path_info ^(.+\.php)(/.+)$;
            fastcgi_pass unix:/var/run/php5-fpm.sock;
    fastcgi_index index.php;
    include fastcgi_params;
}

    location / {
    if (-f $request_filename) {
        break;
    }
    if (-d $request_filename) {
        break;
    }
    rewrite ^/(.*) /index.php?demand=$1;
}

如何重写这个?我现在得到的只是索引页面,其余文件都找不到。我真的希望在这里得到一些帮助,谢谢。

4

2 回答 2

1

重写部分应该只是:

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php?demand=$1 [L]

要强制使用 https,请在上述规则之前添加:

RewriteCond %{HTTPS} off
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
于 2013-10-06T00:24:08.340 回答
0

这是从 nginx 到 apache http://labs.gidix.de/nginx/的转换器

于 2013-10-05T20:48:54.613 回答