1

我有一个站点已移至另一台服务器上的测试区域。网址是:

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 可以在测试站点上运行。

非常感谢

4

1 回答 1

1

更改这些行:

RewriteBase /clientarea/royston/

RewriteRule ^([^.]+)$ /clientarea/royston/$1.php [L]

编辑:你也可以像这样使用你的 ReweireRule 所以你不需要改变它

RewriteRule ^([^.]+)$ $1.php [L]
于 2013-04-03T12:40:56.517 回答