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; } }
location / { rewrite ^/user/(.*)$ /profile.php?u=$1 last; }