Apache try_files analog

Viewed 2949

How do I remake this nginx config

location / {
    try_files /public/$uri @app;
}

location @app {
    fastcgi_pass php5-fpm;
}

}

to Apache config?

2 Answers
Related