1 Pluspunkt 0 Minuspunkte

Nginx unterstützt keine htaccess Datei wie kann ich aber Pretty Links für php mit Nginx erstellen? Also z.B

server {
    listen 80;
    server_name example.com;

    location user/(.*) {
        return 301 /profile.php?u=$1;
    }

}
von  

1 Antwort

0 Pluspunkte 0 Minuspunkte
location / {
    rewrite ^/user/(.*)$ /profile.php?u=$1 last;
}
von