0
可以隱藏.PHP擴展名並在同一時間重定向URL。刪除.PHP並通過htaccess重定向
例如: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
但它不工作。
有什麼想法?
感謝