プロジェクトの 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を書き換えるアイデアを教えてもらえますか?
プロジェクトの 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を書き換えるアイデアを教えてもらえますか?
まず、ルートに .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]