最近水鱼又在整活写路径配置。过程中遇到,比如分别有,http://localhost/index,http://localhost/about这2个网站底下的一级目录。结果自己配置出来的链接,如果点完index,再点about,就会出现奇葩的http://localhost/index/about。为此水鱼动用了7秒就要flush的大脑研究了下发现,如果改成 href="index/",href="about/"就会出现这个外行会比较懵的错误。之所以会提到urls.py是因为出现这种超链接问题,第一反应特别容易去盯着urls.py不放。:P
html
{% extends 'profile/miemie.html' %}
{% block content %}
<div class="container-fluid row">
<div class="col-1 bg-light" data-bs-theme="light">
<ul class="navbar-nav me-auto" style="display:inline block;">
<li class="nav-item" ><a href="/index">Index</a></li>
<li class="nav-item" ><a href="/about">About</a></li>
</ul>
</div>
<div class="col-8">
{% block subbody %}
<p>要不我玩玩?</p>
{% endblock subbody %}
</div>
</div>