目前,我正在尝试为添加到iOS上的电子钱包应用的通行证设置更新。
有趣的是,让网址https://example.com/index.php/var1/var2
仍然可用,而index.php仍在运行。这个网址格式有效吗?
答案 0 :(得分:2)
.htaccess
/ mod_rewrite
是其工作的原因。
例如:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php?path=$1 [NC,L,QSA]
将此规则放在网站根文件夹中名为.htaccess
的文件中,会在/var1/var2
$_GET['path']
路径