XenForo
Administrative
- Thread starter
- Admin
- #1
Before we enable friendly URLs I just had a few questions.
We use nginx so will need to get our host to add this to the config:
Code:
Read more
ادامه مطلب...
We use nginx so will need to get our host to add this to the config:
Code:
Code:
location / {
try_files $uri $uri/ /xf/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...
Read more
ادامه مطلب...