0

.PHP 拡張子を非表示にして、同時に URL をリダイレクトすることは可能ですか。

例: http://example.com/testはhttp://someothersite.comにリダイレクトする必要があります

 Options +FollowSymlinks
 RewriteEngine on
 RewriteBase /
 RewriteCond %{REQUEST_FILENAME} !-d
 RewriteCond %{REQUEST_FILENAME}\.php -f
 RewriteRule ^(.*)$ $1.php
 RewriteRule ^(.*)/test http://someothersite.com

しかし、うまくいきません。

何か案が ?

ありがとう

4

2 に答える 2