我想问你为什么.htaccess文件在第二个斜杠后不能正确添加文件。这是我的.htaccess文件。
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_URI} !(\.css|\.js)$ [NC]
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php [L,QSA]
</IfModule>
地址为http://localhost:82/users时,它可以正确添加文件。 但是当地址为http://localhost:82/users/5时。它从http://localhost:82/user/....css搜索文件。因此,URL中的斜线不能超过一个。