我的项目在bluehost服务器上运行,我打算写一个htaccess文件。我的网站只是一个用原始php编写的登陆页面。 文件夹结构是 /当前目录>
- css
- fonts
- image
- page1
- page2
- page3
- js
- template
- index.php
我为public_html /文件夹编写了一个htaccess文件,为current_directory编写了另一个文件。
当前的htaccess文件
RewriteEngine on
RewriteCond $1 !^(index\.php|css|fonts|image|js|template)
RewriteRule ^(.*)$ index.php/$1 [L]
我的网页已加载但我无法添加任何图片。我试过在图像目录中添加一个htaccess文件,但它没有用。 我的问题是
我应该在哪里添加所有项目目录?反正有自动化吗?
提前致谢。
答案 0 :(得分:1)
我不确定我是否理解您的问题,但如果您遇到的问题是您需要管理图片,则需要将以下代码添加到.httaccess
class MyJavaScriptInterface {
public MyJavaScriptInterface(Context ctx) {
}
public void processContent(String aContent) {
final String content = aContent; // this contains the page source which does not contain the info I want
System.out.println("content: " + content);
}
}
webView.getSettings().setJavaScriptEnabled(true);
webView.addJavascriptInterface(new MyJavaScriptInterface(this), "INTERFACE");
webView.setWebViewClient(new WebViewClient() {
@Override
public void onPageFinished(WebView view, String url) {
view.loadUrl("javascript:window.INTERFACE.processContent(document.documentElement.innerHTML);");
}
});
webView.loadUrl("https://apps.admob.com/#home");
.httaccess应该在/ var / www / public_html
中