多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
## 伪静态 ###Apache HDPHP 框架通过 .htaccess 文件来让网址中不需要 index.php。如果你的网页服务器是使用 Apache 的话,请确认是否有开启 mod_rewrite 模块。 ``` Options +FollowSymLinks RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^ index.php [L] ``` ###Nginx 在 Nginx,在你的网站配置中增加下面的配置,可以使用「优雅链接」: ``` location / { try_files $uri $uri/ /index.php?$query_string; } ```