0

いいねがあれば

http://localhost/index.php/bla...

に変換したいhttp://localhost/er/index.php/bla...

私は次のことを試みていますが、URLを無期限にループしているようです

RewriteRule  ^localhost/index/php/(.*)$  localhost/er/index.php/$1  [R=301,L]
RedirectMatch  301  ^/localhost/index.php/(.*)$  localhost/er/index.php/$1
4

1 に答える 1

1

RewriteRule(mod_rewrite)とRedirectMatch(mod_alias)の2つの異なることが起こっています。必要なのは1つだけですが、どちらもホスト名(localhost)と一致することはできません。これを「localhost」ホストのみに制限する必要がある場合は、次のようにする必要があります。

RewriteEngine On
RewriteCond %{HTTP_HOST} localhost$ [NC]
RewriteRule ^/?index\.php/(.*)$ /er/index.php/$1 [R=301,L]

それ以外の場合は、mod_aliasを使用できます。

Redirect 301 /index.php/ /er/index.php/

それ以降はすべて/index.php/自動的に追加されます。

于 2012-08-09T21:54:44.737 に答える