我有一个站点已移至另一台服务器上的测试区域。网址是:
http://www.example.co.uk/clientarea/royston/the_team(这不是一个实时站点,因此该链接实际上不起作用)
当该站点在实时服务器上时,它将是:
http://www.example.co.uk/the_team
我有一个看起来像这样的 htaccess 文件:
Options +FollowSymLinks
RewriteEngine On
RewriteBase /
##Remove Trailing Slashes
RewriteRule ^(.+)/$ http://%{HTTP_HOST}/$1 [R=301,L]
##Ignore
RewriteCond %{REQUEST_URI} !^/admin
RewriteCond %{REQUEST_URI} !^/css
RewriteCond %{REQUEST_URI} !^/images
RewriteCond %{REQUEST_URI} !^/includes
RewriteCond %{REQUEST_URI} !^/internal
RewriteCond %{REQUEST_URI} !^/modules
RewriteCond %{REQUEST_URI} !^/scripts
##Remove .php from filename
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^([^.]+)$ /$1.php [L]
我需要知道如何更改 htaccess,以便 URL 可以在测试站点上运行。
非常感谢