我想将/services/websites.html重定向到我头部目录中的sites.html。这样我就可以将所有文件放在head目录中,这样所有css文件和类似的东西都可以正确链接。我试过了:
RewriteRule ^ services / websites.html $ websites.html
但这不起作用。我认为这很简单但我在Google上找不到任何东西。
你能帮帮我吗?
答案 0 :(得分:1)
这是您需要放入.htaccess的代码:
Options +FollowSymLinks -MultiViews
# Turn mod_rewrite on
RewriteEngine On
RewriteBase /
RewriteRule ^services/(.*)$ $1 [L,NC]
答案 1 :(得分:0)
尝试:
RewriteRule ^.*websites\.html$ websites.html
请注意您的示例中的html而不是html。