location / {
index index.html index.htm index.php;
#autoindex on;
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=/$1 last;
break;
}
}
thinkphp nginx 伪静态
最新推荐文章于 2025-09-02 16:13:43 发布
本文介绍了如何在Apache服务器中配置URL重写,通过示例展示了`.htaccess`文件的设置,包括默认首页的指定和启用自动目录索引。当请求的文件不存在时,使用`RewriteRule`将请求重定向到`index.php`,实现PHP的URL路由功能。

704

被折叠的 条评论
为什么被折叠?



