gpt4 book ai didi

linux - 将 "handmade"htaccess 移至 nginx 配置

转载 作者:太空宇宙 更新时间:2023-11-04 05:11:51 25 4
gpt4 key购买 nike

主要问题是由 https://winginx.com/htaccess 转换的代码不管用。当尝试打开页面时,它只有白皮书,没有任何调试消息。

已经有 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>

我尝试过其他转换器,但结果相同。

最佳答案

试试这个代码:),让我知道这是否适合你:)

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;
}


}

关于linux - 将 "handmade"htaccess 移至 nginx 配置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54386031/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com