-1

我在 GET 中使用index.php

$request=isset($_GET['m']) && $_GET['m']!='';
$requestFile=isset($_GET['files']) && $_GET['files']!='';

我的链接格式为:localhost:81/Template/index.php?m=index&files=Acc.

如何使用.htaccess文件或 PHP 重写为:localhost:81/Template/Acc/index.html or php

4

1 回答 1

1
Options +FollowSymLinks
RewriteEngine On
RewriteRule ^Template/([^/]+)/([^/.]+)\.html$ /index.php?m=$2&files=$1 [L]

从以下位置获取您的页面:

localhost:81/Template/Acc/index.html
于 2013-01-20T21:10:57.537 回答