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