需要从网络链接中删除网页完整链接路径

时间:2015-08-20 06:13:12

标签: .htaccess

我需要从网络链接中移除网页完整链接路径:http://web.example.com/web/#bwc/index.phphttp://web.example.com/

必须做哪些修改?

2 个答案:

答案 0 :(得分:0)

试试这个:

<IfModule test_rewrite.c>
   RewriteEngine On 
   RewriteRule ^(.*)$ web/$1 [L]
</IfModule>

我希望它会有所帮助......

答案 1 :(得分:0)

如果您使用Apache,https://gist.github.com/wataruoguchi/649963c3ee18640e0105就是答案。

ErrorDocument 503 /maintenance.html
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_URI} !=/maintenance.html
RewriteCond %{REMOTE_ADDR} !=127.0.0.1
RewriteRule ^.*$ - [R=503,L]
</IfModule>

您只需将maintain.html重写为index.html

即可