Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有什么方法可以编辑我的/etc/apache2/sites-available/default,创建一个目录并通过php或ubuntu网络服务器上的任何其他在线脚本在网站上重新加载apache 2?
谢谢克里斯
您的意思是通过您正在创建的某种网络界面?查看shell_exec功能。您可以使用它来创建文件夹,例如shell_exec('mkdir foldername')和shell_exec('/etc/init.d/apache2 restart')
shell_exec
shell_exec('mkdir foldername')
shell_exec('/etc/init.d/apache2 restart')