>  기사  >  백엔드 개발  >  PHP에서 항목 경로를 숨기는 방법

PHP에서 항목 경로를 숨기는 방법

藏色散人
藏色散人원래의
2022-10-27 09:27:461509검색

php隐藏入口路径的方法:1、找到public下面的“.htaccess”文件;2、修改内容为“  Options+FollowSymlinks -Multiviews RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f”即可。

PHP에서 항목 경로를 숨기는 방법

本教程操作环境:windows7系统、thinkphp v5版、Dell G3电脑。

php 怎么隐藏入口路径?

TP5隐藏index.php

tp5对URL简化,不做简化情况下我们访问的是localhost/index.php/index/index/index ,做简化后省去index.php。

我们需要找到public下面的.htaccess文件

apache:

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

推荐学习:《PHP视频教程

위 내용은 PHP에서 항목 경로를 숨기는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

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