如何将url文件夹名称更改为其他名称?

问题描述

请在下面将“从”更改为“到”:

来自:http:// localhost:8082 / Test / Students / index

收件人:http:// localhost:8082 / Anything / Students / index

解决方法

您可以使用此功能

重命名(旧,新,上下文);

Eg.
<?php
    rename("images","pictures"); //change name of dir
    rename("/test/file1.txt","/home/docs/my_file.txt"); //change dir and file
?>