使用.htaccess自定义VHost的工作文件夹

时间:2018-10-30 16:14:33

标签: wordpress apache .htaccess mod-rewrite vhosts

我的配置使用ServerPilot并根据其documentation

Using .htaccess files is a safe way to configure Apache and use mod_rewrite, which is enabled by default.

我以前的工作目录是

/srv/users/serverpilot/apps/APPNAME/public

但是由于有了新的框架,所有内容都已移至

/srv/users/serverpilot/apps/APPNAME/public/web

我想知道是否可以使用.htaccess来实现?

# /srv/users/serverpilot/apps/APPNAME/public/.htaccess

# BEGIN WordPress

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule> 

# END WordPress

有什么建议吗?

0 个答案:

没有答案