我已经搜索了这个,但结果不是我想要的。我希望有人可以帮助我。提前谢谢。
我想使用
中的.htaccess更改/屏蔽网址http://localhost/ecwp/eccube/html/wpss/forum
到
http://localhost/ecwp/eccube/html/forum
这是我的文件夹目录(我使用XAMPP): -
对于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
答案 0 :(得分:0)
RewriteEngine On
RewriteRule ^forum(.*)$ http://localhost/ecwp/eccube/html/wpss/forum/$1 [L]