如何在Windows下创建.htaccess文件

本篇将介绍如何在Windows下创建.htaccess文件。

在Windows下,默认是不可以创建.htaccess文件,因为.htaccess其实在Windows下是没有文件名的。

因此需要做一下的work around:

1. 创建htaccess.txt文件

2. 打开PowerShell,运行以下命令:

mv htaccess.txt .htaccess

或者打开cmd,运行以下命令:

rename htaccess.txt .htaccess

然后查看htaccess.txt的路径,你就会发现.htaccess文件已经被创建了。