怎么用PHP和htaccess獲取URLs

小億
85
2024-04-29 16:55:48

要獲取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ù)的值。

0