我的网站上有一个这样设置的联系页面;
联系人.php
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="stylesheet" href="webpage.css">
<?php include 'header.php'; ?>
</head>
...rest of content
我最近设置了一个带有一些 mod_rewrite 更改的 htaccess 页面。
所以现在,我有像这样的网址
www.example.com/user
和
www.example.com/user/contact
当我查看www.example.com/user/contact
CSS 无法识别并且页面不打印我的任何 div 而只是一些文字内容时。
所以如果我有
<div id="userinfo">
User info
</div>
它只是在页面左侧显示“用户信息”,而不识别 div。
我该如何解决这个问题?