使用.htaccess将URL重写到主页

时间:2017-05-31 06:54:28

标签: php apache .htaccess mod-rewrite url-rewriting

当有人尝试使用myweb.com访问域时,我希望将/myweb/index.php文件作为默认登录页面。我尝试在.htaccess中使用了几个组合,但未能达到结果。

要求的另一部分是其他网址重定向不应该因为这个特殊的重写网址而出现问题,换句话说,网址的其余部分不应该在/ myweb /内部/服务图像等等

现在我在.htaccess里面有这些

RewriteRule ^$  myweb/index.php  [L] (This does not)
RewriteRule ^shops/(.*)$ /myweb/shops/$1 [L]   (This works)
RewriteRule ^content/(.*)$ /myweb/content/$1 [L]  (This works)

.htaccess文件放在/ var / lib / tomcat7-cms / webapps / ROOT

Anyhelp对此非常感激。

0 个答案:

没有答案