jdvogt
#1
Can anyone tell me the functionality of the @ symbol in the following
statement?
location @joomla {
rewrite ^(.*)$ /index.php?q=$1 last;
}
(from http://wiki.nginx.org/NginxJoomla)
Thanks
Posted at Nginx Forum:
http://forum.nginx.org/read.php?2,5212,5212#msg-5212
jdvogt
#2
jdvogt
#3
Hello!
On Wed, Sep 02, 2009 at 01:08:22AM +0100, Mathew D. wrote:
Internal location
http://wiki.nginx.org/NginxHttpCoreModule#internal
No, it’s “named location”. It is internal, but not only.
Basically, it’s location that preserves original uri on internal
redirects via error_page or try_files.
Maxim D.