joomla 安裝好之後, 打開首頁正常,
隨便一個鏈接點進去都是404,找不到頁面,
URL的形式如下:
http://www.xxx.com/index.php/getting-started
google出來的東西就不提了,亂七八糟的。
http://docs.joomla.org/Nginx#Configure_Nginx
看這裡吧。
重要的一句:
location / {
try_files $uri $uri/ /index.php?q=$uri&$args;
}
作死!
在location / {
}
裡面加入一行
try_files $uri $uri/ /index.php?q=$uri&$args;
然後重啟nginx