从 URL 中删除 2 个文件夹并重定向到页面

问题描述

我正在创建一个新的网络应用程序,这是我的项目文件夹的样子:

I added an image because I thought it would be easier to explain the structure this way

如您所见,我已将根文件夹中的 htaccess 重命名,因为我没有使用那个,而我使用的是位于公用文件夹内的那个。我正在尝试更改我的网址:

http://example.site/public/pages/about

到:

http://example.site/about

我能够从文件扩展名中删除 .PHP,但我添加的用于从 URL 中删除文件夹的代码不起作用。

注意:在根文件夹 (App/index.PHP) 中,index.PHP 文件只有这个:

<?PHP

header('Location: public/pages');

所以我只是用它来发送到正确的文件夹。

这是我目前所拥有的:

Options +FollowSymLinks -MultiViews

RewriteEngine on

RewriteBase /App/public/

RewriteRule ^pages/(.+)$ /$1 [L,R=302,NC]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule (.+) $1.PHP [NC,L]

我从这个网址看到了这个问题/答案:

Remove / Rewrite 2 directory names from URL

但它对我不起作用。期待任何可以提供帮助的人,谢谢。

解决方法

假设 ``htdocs/app/is yourDocumentRootforapp.blu` 域。

htdocs/app/public/.htaccess 中,您可以使用以下代码:

Options +FollowSymLinks -MultiViews
RewriteEngine on

# if URL has /pages/ then remove and redirect
RewriteCond %{ENV:REDIRECT_STATUS} ^$
RewriteRule ^pages/(.+)$ /$1 [L,R=301,NC]

# landing page for app subdomain to show index.php
RewriteRule ^$ pages/index.php [L]

# check & rewrite if a matching .php file exists in pages/ subdirectory
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{DOCUMENT_ROOT}/public/pages/$1.php -f
RewriteRule ^(.+?)/?$ pages/$1.php [L]

除此之外,您还需要在 htdocs/app/.htaccess 中使用此代码:

Options +FollowSymLinks -MultiViews
RewriteEngine on

# send all the traffic to /public/
RewriteRule .* public/$0 [L]