我正在处理一个应用程序,其中我在编写相对URL时遇到问题。
问题是,
假设我的网址为localhost/my-site/
现在我希望标记上的另一个网址为<a href="category">Category</a>
。这将在地址栏中生成localhost/my-site/category
正确的网址。
但是,如果我当前的网址是localhost/my-site/category
&amp;我希望代码为<a href="category/subcategory">Subcategory</a>
,结果网址将在我的地址栏中为localhost/my-site/category/category/subcategory
。
所以,我现在正在做的是,
<a href="localhost/my-site/category">Category</a>
<a href="localhost/my-site/category/subcategory">Subcategory</a>
我不想这样做。请帮忙。