🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
## 伪静态 ###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; } ```