使用htaccess php重写URL

时间:2013-04-12 07:27:56

标签: php .htaccess url-rewriting

我想在我的项目中重写网址。

例如:

http://www.example.com/dashboard/test/http://dashboard.example.com/index.php

我也希望这样做:

http://www.example.com/dashboard/test2/http://dashboard.example.com/index.php

有人能告诉我重写网址的想法吗?

2 个答案:

答案 0 :(得分:0)

首先,在根目录中创建.htaccess文件。 比,只需将重定向命令放入其中。 如何撰写.htaccess以及如何创建重写规则在此解释:http://net.tutsplus.com/tutorials/other/the-ultimate-guide-to-htaccess-files/

您将需要以下内容:

RewriteRule ^(.*)$ http://dashboard.example.com/$1 [L,QSA]

答案 1 :(得分:0)

试试这个

 Options +FollowSymLinks
RewriteEngine On
RewriteRule ^test.*$  http://dashboard.example.com/index.php [R=301,L]