我的配置使用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
有什么建议吗?