简体   繁体   English

将“手工”htaccess 移动到 nginx 配置

[英]Move "handmade" htaccess to nginx config

The main problem is code which has converted by https://winginx.com/htaccess is not working.主要问题是由https://winginx.com/htaccess转换的代码不起作用。 When trying open page it has just white paper without any debug messages.尝试打开页面时,它只有白皮书,没有任何调试消息。

Already have nginx config:已经有了 nginx 配置:

server {

    location / {
        try_files $uri $uri/ /index.php?$args;
                rewrite ^/course-track/* https://website.com/profile/? redirect;
                rewrite ^/course-category/* https://websitw.com/profile/? redirect;
    }
        location /extra-online-testing/ {
                rewrite ^(.*)$ https://website.com/tests/extra-online-testing/ redirect;
        }

        location = /my-courses/ {
               rewrite ^(.*)$ https://website.com/profile/? redirect;
        }
        location = /courses/ {
         rewrite ^(.*)$ https://website.com/profile/? redirect;
        }
}

htaccess:访问:

RewriteEngine On

RewriteCond %{REQUEST_URI} ^/my-courses/$
RewriteRule ^.*$ https://website.com/profile/? [R=301,L]

RewriteCond %{REQUEST_URI} ^/course-track/*
RewriteRule ^.*$ https://website.com/profile/? [R=301,L]

RewriteCond %{REQUEST_URI} ^/courses/$
RewriteRule ^.*$ https://website.com/profile/? [R=301,L]


RewriteCond %{REQUEST_URI} ^/course-category/*
RewriteRule ^.*$ https://website.com/profile/? [R=301,L]

Redirect 301 /extra-online-testing/ https://website.com/tests/extra-online-testing/

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

I have tried another converters, but had same result.我尝试过其他转换器,但结果相同。

Try this code :), let me know if this works for you :)试试这个代码:),让我知道这是否适合你:)

server {
        listen 80 default_server;
        listen [::]:80 default_server ipv6only=on;

        root /var/www/html;
        index index.php index.html index.htm;

        server_name your_domain.com;

        location / {
                # try_files $uri $uri/ =404;
                try_files $uri $uri/ /index.php?q=$uri&$args;
        }

        error_page 404 /404.html;

        error_page 500 502 503 504 /50x.html;
        location = /50x.html {
                root /usr/share/nginx/html;
        }

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




          location = /my-courses/ {
          rewrite ^(.*)$ https://website.com/profile/? redirect;
      }

          location / {
          rewrite ^/course-track/* https://website.com/profile/? redirect;
          rewrite ^/course-category/* https://website.com/profile/? redirect;
      }

          location = /courses/ {
          rewrite ^(.*)$ https://website.com/profile/? redirect;
      }

          location /extra-online-testing/ {
          rewrite ^(.*)$ https://website.com/tests/extra-online-testing/ redirect;
      }

          location / {
          rewrite ^/course-category/* https://website.com/profile/? redirect;
      }


}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM