-1

以下の私のリンク(index.php):

<a href="http://localhost/example-link.html">Example Link</a>

または、以下のような私のリンク:

<a href="http://localhost/other.html">Other</a>

リンクをクリックすると、cat.php から "example-link.html" ır "other.html" を取得したい

Cat.php

<?php 
echo $_GET["cat"];
?>

$_GET["cat"] (example-link.html または other.html) を印刷したい

4

2 に答える 2

1
RewriteEngine On
RewriteRule ^(.+)\.html$ cat\.php 

$_GET["cat"] (example-link.html または other.html) を印刷したい

事前定義された変数$_SERVERには、その情報の一部が含まれます。REQUEST_URI

于 2012-05-27T11:30:32.973 に答える
0
# Redirect old file path to new file path
Redirect /example-link.html http://localhost/cat.php
于 2012-05-27T11:31:15.703 に答える