ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
## 伪静态 ###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; } ```