使用.htaccess屏蔽/更改网址

时间:2013-12-30 02:48:11

标签: php wordpress apache .htaccess mod-rewrite

我已经搜索了这个,但结果不是我想要的。我希望有人可以帮助我。提前谢谢。

我想使用

中的.htaccess更改/屏蔽网址
http://localhost/ecwp/eccube/html/wpss/forum 

http://localhost/ecwp/eccube/html/forum 

这是我的文件夹目录(我使用XAMPP): -

  • 的htdocs
    • ECWP
      • eccube
        • HTML
          • wpss->这个wp主题下的论坛
          • 的.htaccess
        • 数据

对于wpss,我使用wordpress和永久链接设置:

http://localhost/ecwp/eccube/html/wpss/archives/123

这是.htaccess代码: -

RewriteEngine On
RewriteRule ^forum/ http://localhost/ecwp/eccube/html/wpss/forum [L]

运行此代码时,

http://localhost/ecwp/eccube/html/forum 

将重定向转到

http://localhost/ecwp/eccube/html/wpss/forum

1 个答案:

答案 0 :(得分:0)

RewriteEngine On
RewriteRule ^forum(.*)$ http://localhost/ecwp/eccube/html/wpss/forum/$1 [L]