使用
传递参数$n=isset($_GET['page']) ? (int)$_GET['page'] : 0;
echo('<a href="?page='.($n+1).'">Next</a>');
因此网址是:
home.php?page=2
如何删除参数&amp; * .pp文件名来自url或make
"home/browse/" ?
答案 0 :(得分:1)
为什么不使用重写引擎来避免它.htaccess
<IfModule mod_rewrite.c>
Options +FollowSymLinks
#enter code here
IndexIgnore */*
# Turn on RewriteEngine
RewriteEngine On
# Rules
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php
</IfModule>
答案 1 :(得分:0)
在root中添加.htaccess:
RewriteEngine On
RewriteCond%{REQUEST_FILENAME}!-d
RewriteCond%{REQUEST_FILENAME}!-f
RewriteCond%{REQUEST_FILENAME}!-l
RewriteRule ^(。+)$ index.php?MyVar = $ 1 [QSA,L]
您可以在代码中使用$_GET['MyVar']
进行检查:
$MyVar = isset($_GET['MyVar'])? $_GET['MyVar'] : 'Nop' ;
$Arr= explode('/',$MyVar) ;
之后你就得到了数组中的requst数组。