Thread: SEO Problem
View Single Post
  #1  
Old 10-27-2017, 06:10 AM
 
geodesy geodesy is offline
    
Join Date: Oct 2017
Posts: 1
 

Question SEO Problem

can not enable clean URL
http://ipic.su/img/img7/fs/Snimokekrana2017-10-27v16.1509113237.png

what is the problem? here is my file nginx.conf
user  apache;
worker_processes 1;
error_log  /var/log/nginx/error.log warn;
pid        /var/run/nginx.pid;
events {
    worker_connections 1024;
            }
http {
    include       /etc/nginx/mime.types;
    default_type  application/octet-stream;

    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                      '$status $body_bytes_sent "$http_referer" '
                      '"$http_user_agent" "$http_x_forwarded_for"';

    access_log  /var/log/nginx/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    keepalive_timeout  65;

    #gzip  on;

    include /etc/nginx/conf.d/*.conf;
include /etc/nginx/vhosts/*/*.conf;
server {
        server_name localhost;
 disable_symlinks if_not_owner;
include /etc/nginx/vhosts-includes/*.conf;
location @fallback {
error_log /dev/null crit;
proxy_pass http://127.0.0.1:8080;
proxy_redirect http://127.0.0.1:8080 /;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
access_log off ;
}
location @handler {
        index cart.php;
        rewrite ^/sitemap.xml(\?.+)?$ /cart.php?target=sitemap;
        rewrite ^/(.*)$ /cart.php?url=$1 last;
}
location / {
        try_files $uri $uri/ @handler;
}
location ~ \.php$ {
        try_files $uri @handler;
        # be careful about your fastcgi params, don't let duplicate try_files
}
listen 80;
    }
client_max_body_size 128m;
}
__________________
X-Cart 5.3.3.4
Reply With Quote