Support Friendly Urls Error , please help me

newmoon

Registered
1770220355437.png

trying to use friendly url and i get this errors , it gives 404 error after click on any node
please any professional and helper
i would be really greatful for this , thank you
 

orange

Registered
use
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/ {
internal;
}

if (!-e $request_filename){
rewrite ^(.*)$ /index.php break;
}
 
Back
Top Bottom