要獲取URL參數,你可以使用PHP中的$_GET
或$_REQUEST
全局變量。例如,如果你的URL是http://example.com/index.php?page=about
,你可以使用以下代碼來獲取page
參數的值:
$page = $_GET['page'];
echo $page; // 輸出為 "about"
如果你想重寫URL并隱藏參數,你可以使用.htaccess
文件來實現。例如,你可以將http://example.com/index.php?page=about
轉換為http://example.com/about
。在.htaccess
文件中添加以下代碼:
RewriteEngine On
RewriteRule ^([^/]*)$ /index.php?page=$1 [L]
這將把http://example.com/about
重寫為http://example.com/index.php?page=about
。然后你可以使用上面的PHP代碼來獲取參數的值。