1

URLをできるだけシームレスに別のサイトにリダイレクトしようとしています。サイトのhtaccessファイルで次のものを使用しています。

リダイレクト/durhamchapelhillhttp://gds.chapelhilluumc.org/

リダイレクトは機能しますが、結果のURLは乱雑です: http://gds.chapelhilluumc.org/?/ durhamchapelhill

http://gds.chapelhilluumc.org/である必要があります

私はこれにいくつかの入力を使用することができます。

ありがとう

4

1 に答える 1

1

コメントに基づいて.htaccessの内容を更新

AddHandler php5-script .php

RewriteEngine On
RewriteBase /

RewriteRule ^durhamchapelhill$ http://gds.chapelhilluumc.org [R]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php?/$1 [L] 
于 2013-02-27T06:05:55.463 に答える