Home > Backend Development > PHP Problem > How to hide index.php in iis

How to hide index.php in iis

藏色散人
Release: 2023-03-07 18:14:01
Original
2159 people have browsed it

iis隐藏index.php的方法:首先安装微软的URL Rewrite模块;然后点击url重写模块,并点击“导入规则”;最后填入重写规则,并点击“应用”即可。

How to hide index.php in iis

推荐:《PHP视频教程

iis隐藏index.php

1.先安装微软的URL Rewrite模块 网址是https://www.iis.net/downloads/microsoft/url-rewrite#additionalDownloads

安装完成后iis会出现url重写模块

2.点击进去点击点击导入规则

 

3.填入 重写规则 ,然后点击右侧“应用”提交:


<IfModule mod_rewrite.c>    
RewriteEngine on    
RewriteCond %{REQUEST_FILENAME} !-d    
RewriteCond %{REQUEST_FILENAME} !-f    
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]    
</IfModule>
Copy after login

  

 

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

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template