我想将网址www.example.com/first/test-one/重命名为www.example.com/second/test-one/。目前没有带URL的网页www.example.com/second/test-one/。在此过程中,原始页面的内容应显示在www.example.com/second/test-one/ URL中。请注意,有多个页面,如www.example.com/first/test-two/,www.example.com/first/test-three/,等等。这是我的代码:
RewriteEngine On
RewriteBase /
RewriteRule ^first/(.*) http://example.com/second/$1 [QSA,L]
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
提前致谢。