我已经在我的主题主页中添加了这个表格
<form action="" method="GET">
<label>NAME:</label>
<input type="text" name="name" id="name" required/>
<button>GET</button>
</form>
<?php
if (isset($_GET['name'])){
$name = $_GET['name'];
echo "hello".$name;}
?>
在这里我得到顶部的网址是
example.com/?name=google
我想要自定义网址
example.com/name/google
那么我应该怎么做才能通过 get 方法获取自定义 URL?