我有两个网站:
http://example.com http://example.com/sub
我有一个页面,让我们说:
有没有办法(使用.htacces)可以通过这个网址访问page1:
重定向301将无法完成工作,因为我不需要重定向。是否有任何方法可以省略某些网址的“/ sub /”,例如http://example.com/sub/page1?
答案 0 :(得分:1)
<IfModule mod_rewrite.c>
RewriteEngine On
# This would rewrite any URL that starts with /sub to /
RewriteCond %{REQUEST_URI} /sub
RewriteRule ^sub/(.*)$ /$1 [L]
<IfModule>
编辑以满足OP的要求。