如何使用不同的URL在php中加载相同的页面

时间:2014-01-29 07:21:08

标签: php

4 个答案:

答案 0 :(得分:1)

在根文件夹中创建一个htaccess文件,然后尝试重写规则,如:

RewriteEngine On
RewriteRule ^/six-sigma-green-belt-training-bangalore/(.*)$ http://www.simplilearn.com/quality-management/six-sigma-green-belt-training/$1 [R=301,L]

答案 1 :(得分:0)

在根目录中创建.htaccess文件并执行类似

的操作
Redirect /foldername/filename.html http://www.mynewwebsite.com/foldername2/filename.html

有关.htaccess的更多信息: http://net.tutsplus.com/tutorials/other/the-ultimate-guide-to-htaccess-files/

答案 2 :(得分:0)

答案 3 :(得分:0)

<a href="index.php?url=url1">
<a href="index.php?url=url2">

并在index.php

<?php if ($_GET['url1'] || $_GET['url2'] ){
// display content;
}?>

您可以使用此功能或使用.htaccess为您的链接编写规则,如上面的答案所示。