.htacess文件在Red Hat Linux Server V6.1中不可见
是否有任何选项可以让它可见。 (类似于" 显示隐藏文件"在Windows中)
由于我对Linux完全陌生,所以任何指导/建议都会非常有用。
PS:不仅仅是.htaccess文件。所有文件以"。"开头没有显示。
答案 0 :(得分:1)
在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
来显示隐藏文件