产品分类点进去就报错。我不是用宝塔一键安装的。
OPPS! We Couldn’t Find this Page
Please contact us if you think this is a server error, Thank you.
Bring me back Home

以下是我的伪静态配置, 不知道这个配置有没有错
——————————————————————————————————————————————————————
location /fr/ {
index index.php;
if (!-e $request_filename){
rewrite . /fr/index.php last;
}
}
location /it/ {
index index.php;
if (!-e $request_filename){
rewrite . /it/index.php last;
}
}
location /es/ {
index index.php;
if (!-e $request_filename){
rewrite . /es/index.php last;
}
}
location /cn/ {
index index.php;
if (!-e $request_filename){
rewrite . /cn/index.php last;
}
}
location /de/ {
index index.php;
if (!-e $request_filename){
rewrite . /de/index.php last;
}
}location / {
index index.php;
if (!-e $request_filename){
rewrite . /index.php last;
}
}