header('location:index.php');
這個重定向到www.website.com/index.php
我想重定向到www.website.com/
所以使用重定向到索引文件
header('location:');
但這行不通
header('location:index.php');
這個重定向到www.website.com/index.php
我想重定向到www.website.com/
所以使用重定向到索引文件
header('location:');
但這行不通
您可能需要使用mod_rewrite
有點像在你的.htaccess應該做的伎倆
RewriteRule ^a$ about.php
或
RewriteRule ^a$ about.php&%{QUERY_STRING}
如果喲想保持參數。
此外,我不認爲你的意思是說www.web.com/about .COM
u可以使用此代碼的.htaccess和鏈接使用www.web.com/about
Options +FollowSymLinks
RewriteEngine on
## handler view
RewriteRule ^about$ about.php [L]
header('location :.');我得到了答案,有人請關閉我的問題 –