Questions tagged «relative-urls»

1
.htaccess重写URL导致缺少CSS
我正在尝试从中获取我的网址: example.com/view.php?id=15 对此: example.com/watch/15 我的代码.htaccess如下: Options -Indexes Options +FollowSymlinks RewriteEngine On RewriteRule ^watch/([^/]+) view.php?id=$1 [NC] 现在,如果我去example.com/watch/15加载内容,但没有任何JS,则CSS,因为在这种情况下,/watch它将在不存在的文件夹下查找CSS和JS 。 如何使此选项正常工作?我不想创建watch文件夹并复制粘贴CSS和JS,以便将其正确嵌入。

2
速度比较-绝对路径和相对路径链接
假设我http://example.com/library/要从子目录(http://example.com/library/html/basics/)链接到父目录()。 到父目录的链接可以是: href="../../" href="https://webmasters.stackexchange.com/library/" href="http://example.com/library/" 根据我编写链接的方式,速度会有差异吗?我不是在问网站加载速度,而是在遍历目录时是否存在明显差异。
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.