.htacess文件在Red Hat Linux Server V6.1中不可见

是否有任何使其可见的选项。 (类似于在Windows中“显示隐藏文件”)

由于我是Linux的新手,所以任何指导/建议都将非常有帮助。

PS:不仅.htaccess文件。所有以“。”开头的文件。没有显示。

最佳答案

在Linux中,以.开头的所有内容均被隐藏。

所以要访问...

在终端中使用ls -la

amit@tapas:~/temp/time$ ls
amit@tapas:~/temp/time$ touch .somefile
amit@tapas:~/temp/time$ touch anotherfile
amit@tapas:~/temp/time$ ls
anotherfile
amit@tapas:~/temp/time$ ls -la
total 8
drwxrwxr-x  2 amit amit 4096 May 13 18:14 .
drwxr-xr-x 15 amit amit 4096 May  7 18:05 ..
-rw-rw-r--  1 amit amit    0 May 13 18:14 anotherfile
-rw-rw-r--  1 amit amit    0 May 13 18:14 .somefile
amit@tapas:~/temp/time$


在Nautilus这样的GUI中,您可以按cntrl + h以显示隐藏文件

10-04 22:55