Nginx-ru mailing list archive (nginx-ru@sysoev.ru)
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Как удалить index.php из URL
- To: nginx-ru@xxxxxxxxx
- Subject: Как удалить index.php из URL
- From: "pattern" <nginx-forum@xxxxxxxx>
- Date: Sat, 27 Oct 2012 10:22:00 -0400
- Dkim-signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=tigger.jlkhosting.com; s=x; h=Date:Sender:From:Message-ID:Content-Transfer-Encoding:Content-Type:Subject:To; bh=iAJDdGNoDCD5Rlm1kzQpubtf8BkB3eQJMQkiC7/THA8=; b=WAENsWU8pQlHMGM98Zga1xDK7BiLqu9cnu8Qx8EH3Sdi105F/Hcz92DEPvhEMjAyw6R/bl68FKEYba/hksEoIaPqu6Floipk9lyq+PjlNK4Hr3F1tB6/iXl02KXBRDGI;
Всем привет!
Есть домен www.mydomain.ru на котором установлена joomla. Нужно чтобы URL'ы
www.mydomain.ru/index.php
www.mydomain.ru
mydomain.ru/index.php
перенаправлялись на
mydomain.ru
Конфиг сейчас выглядит так:
server {
listen 80;
server_name mydomain.ru www.mydomain.ru;
server_name_in_redirect off;
charset utf-8;
access_log /var/log/nginx/access.mydomain.log main;
error_log /var/log/nginx/error.mydomain.log info;
root /usr/home/mydomain/public_html;
index index.php index.html index.htm default.html default.htm;
if ($host = "www.mydomain.ru" ) {
rewrite ^/(index\.php)?(.*)$ http://mydomain.ru/$2 permanent;
}
location /index.php {
rewrite ^/(.*)$ http://mydomain.ru permanent;
}
location / {
try_files $uri $uri/ /index.php?q=$uri&$args;
}
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}
}
Все работает, за исключением того, что не могу никак добиться, чтобы
mydomain.ru/index.php перенаправлялся на mydomain.ru. Подскажите, что ещё
нужно добавить или удалить, чтобы получился желаемый результат?
Posted at Nginx Forum:
http://forum.nginx.org/read.php?21,232265,232265#msg-232265
_______________________________________________
nginx-ru mailing list
nginx-ru@xxxxxxxxx
http://mailman.nginx.org/mailman/listinfo/nginx-ru
|