如何解决从 URL 中删除 2 个文件夹并重定向到页面
如您所见,我已将根文件夹中的 htaccess 重命名,因为我没有使用那个,而我使用的是位于公用文件夹内的那个。我正在尝试更改我的网址:
http://example.site/public/pages/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 your
DocumentRootfor
app.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]
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。