## 优雅链接
项目中需要使用路由等操作生成优雅的URL,其中有一项需要隐藏入口文件。
- [优雅链接](#_1)
- [Apache](#Apache_2)
- [Nginx](#Nginx_3)
### Apache
This7 框架通过 .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;
}
```