3

我需要从子目录重定向到父目录。

换句话说,我必须重定向任何匹配的东西

http://exemple.com/portfolio/product1

至 :

http://exemple.com/product1

有没有办法用 URL REWRITE 做到这一点?

谢谢

4

2 回答 2

4

通过启用 mod_rewrite 和 .htaccess httpd.conf,然后将此代码放在您.htaccessDOCUMENT_ROOT目录下:

Options +FollowSymLinks -MultiViews
# Turn mod_rewrite on
RewriteEngine On
RewriteBase /

RewriteRule ^portfolio/(.*)$ /$1 [L,R=301,NC]
于 2013-08-27T14:55:35.097 回答
2

您想将其放入要重定向的目录中的 .htaccess

RewriteEngine On
RewriteCond %{REQUEST_URI} !^/parent 
RewriteRule ^(.*)?$ http://%{HTTP_HOST}/parent
于 2013-08-27T14:57:36.113 回答