我正在尝试在Apache(共享主机)的子目录http://www.example.com/mymojoapp/
中运行一个小的Mojolicious Lite应用程序。我大多试图关注this guide。
mymojoapp
是服务器上的实际目录,app结构如下:
mymojoapp
|- .htaccess
|- app.pl
|- public
| +- images
| | +- ... (image files) ...
| +- css
| | +- ... (css files) ...
| +- js
| +- ... (js files) ...
+- templates
|- layouts
| |- index-layout.html.ep
| +- other-page-layout.html.ep
|- index.html.ep
+- other-page.html.ep
.htaccess
内容:
AddHandler cgi-script .pl
Options +ExecCGI
IndexIgnore *
RewriteEngine on
RewriteCond %{DOCUMENT_ROOT}/public/%{REQUEST_URI} -f
RewriteRule ^(.*)$ public/$1 [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule ^(.*)$ app.pl/$1 [L]
app.pl
内容(perlml
是perl
+用户安装模块的路径,包括Mojolicious):
#!/usr/bin/perlml
use Mojolicious::Lite;
hook before_dispatch => sub {
my $c = shift;
$c->req->url->base(Mojo::URL->new(q{http://www.example.com/mymojoapp/}));
};
get '/' => 'index';
get '/u/:username' => sub {
my $self = shift;
$self->stash(profile => $self->stash('username'));
} => 'user-profile-page';
app->secrets(['app','secrets']);
app->start;
在index-layout.html.ep
和other-page-layout.html.ep
中,我将css(和图片)称为<link rel="stylesheet" href="<%= url_for %>/css/styles.css">
。当我访问基本网址(http://www.example.com/mymojoapp/
)时,页面会显示正确的样式,因为url_for
为我/mymojoapp/
提供了样式表= /mymojoapp/css/normalize.css
的路径。但是当我访问http://www.example.com/mymojoapp/u/someuser
时,CSS路径为/mymojoapp/u/someuser/css/normalize.css
并且未应用样式。
我觉得我错过了一些重写规则,或者它可能在before_dispatch
挂钩中修复,但到目前为止我无法理解。
如何确保在我的应用中生成的所有网页都能获得正确的基本网址?
答案 0 :(得分:1)
在@jabberwok的IRC #mojo上收到了答案:
而不是<%= url_for %>/css/styles.css
我需要使用<%= url_for('/css/styles.css') %>
。