我想在我的项目中重写 url。
例如:
http://www.example.com/dashboard/test/
至http://dashboard.example.com/index.php
我也想这样做:
http://www.example.com/dashboard/test2/
至http://dashboard.example.com/index.php
谁能告诉我重写网址的想法?
我想在我的项目中重写 url。
例如:
http://www.example.com/dashboard/test/
至http://dashboard.example.com/index.php
我也想这样做:
http://www.example.com/dashboard/test2/
至http://dashboard.example.com/index.php
谁能告诉我重写网址的想法?
首先,您在根目录中创建一个 .htaccess 文件。比,只需将重定向命令放入其中。此处解释了如何编写 .htaccess 以及如何创建重写规则:http: //net.tutsplus.com/tutorials/other/the-ultimate-guide-to-htaccess-files/
您将需要类似的东西:
RewriteRule ^(.*)$ http://dashboard.example.com/$1 [L,QSA]
尝试这个
Options +FollowSymLinks
RewriteEngine On
RewriteRule ^test.*$ http://dashboard.example.com/index.php [R=301,L]