How to hide index.php in 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.
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>
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 //去掉该语句前的#号
3. Configure the local host file
sudo vim /etc/hosts //在文件末尾添加虚拟域名配置 127.0.0.1 cm.com
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!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

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. 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.

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

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

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: 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: 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.

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.
