这从原始 url 中排除 CSS/JS/Images。有谁知道如何解决这个问题?
.htacess:
RewriteEngine on
RewriteRule %{REQUEST_FILENAME} !-d
RewriteRule %{REQUEST_FILENAME} !-f
RewriteRule ^(.+)$ index.php?uri=$1 [QSA,L]
PHP:
$splitarray = explode('/',$_GET['uri']);
- 我使用 PHP 分解 URL 以获取第二个参数并将该页面包含到 index.php