在wordpress中允许URL重定向到wordpress外的php文件

时间:2015-04-25 13:27:41

标签: .htaccess

我在mydomain.com上运行wordpress博客

我想要将mydomain.com/app的请求重写到文件夹" wp-installation / app / app.php"

这是我当前的.htaccess文件:

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

感谢任何帮助。

1 个答案:

答案 0 :(得分:1)

试试这个

<IfModule mod_rewrite.c>
 RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} ^/app/?$
RewriteRule ^.* /wp-installation/app/app.php [NC,L]
RewriteRule . /index.php [L]
</IfModule>

我添加了一个条件来检查请求的URI字符串是否包含“/ app”,然后将其重写为/wp-installation/app/app.php,否则重写为index.php文件。