nginx转Apache

location / {

try_files $uri $uri/ /index.php$is_args$args;

}

请问一下这个如果写带apache的htaccess应该如何写?

阅读 2.3k
1 个回答

RewriteRule ^(.*)$ /index.php/$1 [QSA,PT,L]

推荐问题