.htaccess 根目录下的wordpress和子目录htaccess下的另一个vuesjs应用程序为子目录URL提供404

.htaccess 根目录下的wordpress和子目录htaccess下的另一个vuesjs应用程序为子目录URL提供404,.htaccess,.htaccess,` 重新启动发动机 重写cond%{REQUEST_URI}^/appointment/*$ 重写规则^(.*)$$1[L] 重写基/ 重写规则^index\.php$-[L] 重写cond%{REQUEST_FILENAME}-F 重写cond%{REQUEST_FILENAME}-D 重写规则/index.php[L] ` 如果可以的话 但是[域名]/约会/预订此url 给我404 类似问题- 我引用了这个URL,但它不起作用 <IfModule mod_rewrite.c&g

`


重新启动发动机
重写cond%{REQUEST_URI}^/appointment/*$
重写规则^(.*)$$1[L]
重写基/
重写规则^index\.php$-[L]
重写cond%{REQUEST_FILENAME}-F
重写cond%{REQUEST_FILENAME}-D
重写规则/index.php[L]
`

如果可以的话

但是[域名]/约会/预订此url

给我404

类似问题-

我引用了这个URL,但它不起作用

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