我需要从网络链接中移除网页完整链接路径:http://web.example.com/web/#bwc/index.php
为http://web.example.com/
必须做哪些修改?
答案 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