Mac OS X doesn't allow to name files starting with a dot. How do I name the .htaccess file?

本小妞迷上赌 提交于 2019-12-03 01:23:31

问题


As mentioned in the title, Mac OS X doesn't allow me to name files starting with a dot ( . ). But, I need an .htaccess file. Or, better, how do I use an htaccess file in Mac OS X without giving it a name starting with a dot?

I am running Mac OS 10.5.8 and XAMPP 1.7.3.


回答1:


You can't do this with the Finder. Open Terminal.app (Applications -> Utilities -> Terminal), and type:

> cd /path/to/directory/containing/htaccess
> mv current_file_name .htaccess

Example (do not take directory names or initial filename literally, of course):




回答2:


You can create files that begin with a "." if you can view hidden files.

Enter the following commands to show hidden files:

defaults write com.apple.finder AppleShowAllFiles -bool YES
killall Finder

When you're done enter these commands to hide them again:

defaults write com.apple.finder AppleShowAllFiles -bool NO
killall Finder



回答3:


You need to be able to see invisible files first.

In finder press command+shift+. to toggle hidden files visibility.

Then just go to the folder where the file is and you'll see it there. You can now rename the file to start with a . if you want.

To create a new file you can do this in the terminal: touch .htaccess, once the terminal is at the right folder




回答4:


Use the terminal instead of Finder to rename it. Try mv.




回答5:


You can add an alias in your startup script file to make the command shorter. Usually this is .bashrc, .bash_login or .profile file in your home directory.

alias ondot='defaults write com.apple.finder AppleShowAllFiles -bool YES; killall Finder'
alias ofdot='defaults write com.apple.finder AppleShowAllFiles -bool NO; killall Finder'

Now you can just type ondot to show hidden files. and ofdot for hiding hidden files




回答6:


This works so far as it goes. But TextEdit automatically added .txt to the end of the filename so I ended up with .htaccess.txt

And files with names starting with . don't show up in folders in Finder. You only see it if you go back into Terminal and use ls -a. And if it can't be seen then it can't be uploaded to an online webserver.

Using Fetch as my FTP client, I found it has a function which enables me to create a simple text file directly on the server. This worked to create .htaccess where I really needed it.




回答7:


Since .htaccess files will not be viewable once you change the name with Terminal (without some annoying searching) it is simpler to just drag an empty text file into the directory of choice using FTP and then rename away. Both filename and extensions can be change/removed once inside FTP.




回答8:


Use Terminal.

  1. Open Terminal.

  2. Change Directory to source folder where you want to create the file

    • cd Desktop
  3. Create the file using touch

    • touch .htaccess
  4. Open the file in any text editor

    • atom .htaccess


来源:https://stackoverflow.com/questions/5891365/mac-os-x-doesnt-allow-to-name-files-starting-with-a-dot-how-do-i-name-the-hta

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!