是否可以隐藏 .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
但它不起作用。
任何想法 ?
谢谢