标签: .htaccess mod-rewrite
我有问题。我在主机上有 site.com 站点 store 。当我输入 site.com 时,我想打开 site.com/store ,但我想显示网址 site.com 。
我尝试制作.htaccess文件,但没有结果。
答案 0 :(得分:0)
将此规则放在root .htaccess中:
RewriteEngine On RewriteRule ^((?!store/).*) /store/$1 [L,NC]