在localhost(WAMP服务器)上,我在根目录(examplesite.com)中安装了wordpress。我有一个应用程序需要在Wordpress之外运行,所以我希望它位于文件夹/应用程序(examplesite.com/application)中。我在根目录中创建了文件夹“application”,但当我转到url示例站点时。com/application,我收到消息“禁止您无权访问此服务器上的示例站点/应用程序/<;”。
我找到了一个建议在htaccess中添加以下内容的解决方案,但它对我不起作用。
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} ^/application/(.*)$ [OR]
RewriteRule ^.*$ - [L]
</IfModule>
# 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`
有什么建议吗?提前感谢您!