Htacces index.php?this_path=$1
November 08, 2013 06:06AM
Помогите перевести htaccess
RewriteEngine on
RewriteBase /
RewriteRule ^index.php$ - [L]
RewriteRule ^(^[^.]+)$ /index.php?this_path=$1 [L]

Конвектор сайта переводит мне на:
location / {
rewrite ^/(^[^.]+)$ /index.php?this_path=$1 break;
}

В error.log apache
2013/11/08 16:29:28 [error] 23867#0: *30 "/var/www/site.ru/web/tourfirms/index.html" is not found (2: No such file or directory), client: 92.248.243.0, server: site.ru, request: "GET /tourfirms/ HTTP/1.1", host: "www.site.ru"

Config nginx

server {
listen *:80;

server_name site.ru www.site.ru;

root /var/www/site.ru/web;

index index.html index.htm index.php index.cgi index.pl index.xhtml;

error_page 400 /error/400.html;
error_page 401 /error/401.html;
error_page 403 /error/403.html;
error_page 404 /error/404.html;
error_page 405 /error/405.html;
error_page 500 /error/500.html;
error_page 502 /error/502.html;
error_page 503 /error/503.html;
recursive_error_pages on;
location = /error/400.html {

internal;
}
location = /error/401.html {

internal;
}
location = /error/403.html {

internal;
}
location = /error/404.html {

internal;
}
location = /error/405.html {

internal;
}
location = /error/500.html {

internal;
}
location = /error/502.html {

internal;
}
location = /error/503.html {

internal;
}

error_log /var/log/ispconfig/httpd/site.ru/error.log;
access_log /var/log/ispconfig/httpd/site.ru/access.log combined;

location ~ /\. {
deny all;
access_log off;
log_not_found off;
}

location = /favicon.ico {
log_not_found off;
access_log off;
}

location = /robots.txt {
allow all;
log_not_found off;
access_log off;
}

location /stats {

index index.html index.php;
auth_basic "Members Only";
auth_basic_user_file /var/www/site.ru/stats/.htpasswd_stats;
}

location ^~ /awstats-icon {
alias /usr/share/awstats/icon;
}

location ~ \.php$ {
try_files /9d53b9291759bd903e7bd04ed227882a.htm @php;
}

location @php {
try_files $uri =404;
include /etc/nginx/fastcgi_params;
fastcgi_pass 127.0.0.1:9021;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_intercept_errors on;
}

location / {
rewrite ^/(^[^.]+)$ /index.php?this_path=$1 break;
}


}
Sorry, only registered users may post in this forum.

Click here to login

Online Users

Guests: 177
Record Number of Users: 8 on April 13, 2023
Record Number of Guests: 421 on December 02, 2018
Powered by nginx      Powered by FreeBSD      PHP Powered      Powered by MariaDB      ipv6 ready