Home  >  Article  >  Operation and Maintenance  >  How to hide index.php in nginx

How to hide index.php in nginx

王林
王林Original
2020-08-01 15:44:296010browse

nginx隐藏index.php的方法:直接在vhosts.conf配置文件中添加代码“if ( !-e $request_filename) {rewrite ^/(.*)$ /index.php/$1 last;break;}”即可。

How to hide index.php in nginx

首先打开项目配置文件vhosts.conf;

(推荐教程:nginx使用教程

然后在配置文件中添加如下代码即可。

if ( !-e $request_filename) {
	rewrite ^/(.*)$ /index.php/$1 last;
	break;
}

具体配置如图:

How to hide index.php in nginx

The above is the detailed content of How to hide index.php in nginx. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn