如何在linux Web服务器上创建快捷方式文件夹?

前端之家收集整理的这篇文章主要介绍了如何在linux Web服务器上创建快捷方式文件夹?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我的Web服务器上有一些文件链接到其他文件夹.

我想知道这是如何做的?

例:
我想要http://www.example.com/public_html/css/指向http://www.example.com/public_html/wp-content/themes/theme-name/css/

解决方法

最简单的方法是创建一个这样的symblink:
cd /path/to/public_html/
ln -s /path/to/public_html/wp-content/themes/theme-name/css/ css

例:

cd ~
ln -s wp-content/themes/theme-name/css/ css

猜你在找的Linux相关文章