2013-09-20, 03:33:55
It won't work without altering GS files. However you can use a workaround.
- Install the i18n plugin.
- Replace every function in your theme with its available i18n counterpart.
- Turn on clean URIs.
- Put %parents%/%slug%/ in your custom URI scheme.
- In your nginx config file put this:
Code:location / {
rewrite /?([A-Za-z0-9_-]+)/?$ /index.php?id=$1&$2 last;
}
location /admin {
try_files $uri $uri/ /admin/index.php?id=$uri&$args;
}