Hey,
if youre using nginx ive located this in my URL Rewrite:
I think it is working, im new to xenforo.
If you want, we can connect and help on some thinks eachother 🙂
location / {
try_files $uri $uri/ /index.php?$uri&$args;
index index.php index.html;
}
location /install/data/ {
internal;
}
location /install/templates/ {
internal;
}
location /internal_data/ {
internal;
}
location /library/ { #legacy
internal;
}
location /src/ {
internal;
}
location ~ \.php$ {
try_files $uri =404;
fastcgi_pass 127.0.0.1:9000;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
Regards