>  기사  >  백엔드 개발  >  Apache는 index.php 메소드를 제거합니다.

Apache는 index.php 메소드를 제거합니다.

Guanhui
Guanhui원래의
2020-05-04 14:54:355078검색

Apache는 index.php 메소드를 제거합니다.

Apache去掉index.php方法

1、首先打开Apache的httpd.conf配置文件;

Apache는 index.php 메소드를 제거합니다.

2、然后将mod_rewrite.so模块开启;

Apache는 index.php 메소드를 제거합니다.

3、再搜索“AllowOverride None”将None改为All。

Apache는 index.php 메소드를 제거합니다.4、在项目根目录创建.htaccess文件并写入下面代码

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

위 내용은 Apache는 index.php 메소드를 제거합니다.의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.