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

How to hide index.php in xampp

Oct 19, 2021 am 11:24 AM
index.php xampp

xampp method to hide index.php: 1. Configure httpd-vhosts.conf and httpd.conf files; 2. Open the local host file and add the virtual domain name at the end of the file.

How to hide index.php in xampp

The operating environment of this article: macOS10.15.4 system, thinkphp v5.0.7 && XAMPP (PHP) version 5.6.30, MacBook Air 2019 computer

How does xampp hide index.php?

MAC XAMPP TP5 virtual domain name hidden index.php

1. Configure Apache /Applications/XAMPP/xamppfiles/etc/extra/httpd-vhosts.conf file

sudo vim /Applications/XAMPP/xamppfiles/etc/extra/httpd-vhosts.conf 
//处理多站点localhost访问
<VirtualHost *:80>
    DocumentRoot "/Applications/XAMPP/xamppfiles/htdocs"
    ServerName localhost
</VirtualHost>
//
<VirtualHost *:80>
    DocumentRoot "/Applications/XAMPP/xamppfiles/htdocs/zerg/public"//替换为自己的网站根目录
    ServerName cm.com //替换为自己的虚拟域名
</VirtualHost>
Copy after login

2. Configure Apache /Applications/XAMPP/xamppfiles/etc/httpd.conf

sudo vim /Applications/XAMPP/xamppfiles/etc/httpd.conf
# Virtual hosts //开启虚拟主机配置
Include etc/extra/httpd-vhosts.conf  //去掉该语句前的#号
Copy after login

3. Configure the local host file

sudo vim /etc/hosts
//在文件末尾添加虚拟域名配置
127.0.0.1 cm.com
Copy after login

If the index.php entry file cannot be hidden, possible reasons The virtual domain name is illegal, just reset the virtual domain name

Recommended study: "PHP Video Tutorial"

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

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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

XAMPP encountered PHP execution exception? Troubleshooting tips to help XAMPP encountered PHP execution exception? Troubleshooting tips to help Mar 12, 2024 pm 03:21 PM

In the technical field, XAMPP is a commonly used development environment tool. It integrates software such as Apache, MySQL, PHP and Perl, and can help developers quickly build a local server environment. However, sometimes when using XAMPP, you will encounter PHP execution exception problems, which may cause problems in development work. This article will share some troubleshooting techniques to help readers solve the problem when XAMPP encounters PHP execution exceptions. 1. Check the PHP error log. First, when the P in XAMPP

The solution to the problem that XAMPP cannot execute PHP is revealed The solution to the problem that XAMPP cannot execute PHP is revealed Mar 12, 2024 pm 06:39 PM

The solution to the problem that XAMPP cannot execute PHP is revealed. Specific code examples are needed. XAMPP is a very commonly used integrated development environment tool during website development or local testing. However, sometimes during the installation and configuration of XAMPP, you may encounter the problem that XAMPP cannot execute PHP, resulting in the website being unable to run normally. This article mainly provides a detailed introduction to the solution to the problem that XAMPP cannot execute PHP, including specific code examples. I hope it can help people who encounter similar problems.

Create a local web server using PHP and XAMPP Create a local web server using PHP and XAMPP May 11, 2023 pm 05:19 PM

With the continuous development of computer technology, the use of Web servers has become an indispensable part of people's daily lives. For programmers or web developers, using a local server is essential when developing and testing websites. PHP is a very popular scripting language for web development, and XAMPP is a commonly used server suite among developers. In this article, we will explain how to create a local web server using PHP and XAMPP. 1. Download and install XAMPP before starting to create this

Mastering these three comprehensive development tools is essential for PHP development Mastering these three comprehensive development tools is essential for PHP development Jan 13, 2024 pm 01:13 PM

Inventory of essential tools for PHP development: Mastering these three integrated development tools requires specific code examples. With the rapid development of the Internet, PHP, as a programming language widely used to develop websites and web applications, has attracted more and more developers. love. In order to improve development efficiency and quality, it is essential to use appropriate integrated development tools. In this article, we will take stock of the three necessary tools for PHP development and provide specific code examples for each tool to help developers better master and apply them. The first tool: PHPSt

What should I do if xampp cannot execute php? What should I do if xampp cannot execute php? Mar 23, 2023 am 09:17 AM

For users who use XAMPP for PHP development or debugging, they often encounter some problems, such as problems during the installation and configuration process, or running problems during use. Among them, one of the most common problems is that XAMPP cannot execute PHP. This problem may involve various factors, and today we will introduce some common solutions.

How to hide index.php in tp3 How to hide index.php in tp3 Mar 03, 2023 am 10:18 AM

How to hide index.php in tp3: 1. Find and open the "Application/Common/Conf/config.php" file; 2. Turn on REWRITE mode by modifying "return array('URL_MODEL'=> 2,);".

How to hide index.php in lnmp How to hide index.php in lnmp Oct 21, 2022 am 10:12 AM

How to hide index.php in lnmp: 1. Open the "location ~ [^/].php" file; 2. Modify the content to "location ~ [^/].php"; 3. Remove "#try_files $uri =404; The # symbol in front of "; 4. Add the content "rewrite "^/(.*)$" /index.php last;"; 5. Restart Nginx.

How to remove index.php from https URL How to remove index.php from https URL Mar 20, 2023 pm 03:35 PM

The string index.php often appears in the URLs of many websites. Although this file is very important, sometimes users want to remove this string from their URLs to make the website structure clearer.

See all articles