如何使用 RewriteRule 以便为 PHP 修改 $_SERVER['REQUEST_URI']?
作者:Basj 提问时间:10/22/2021
有了这个:.htaccess RewriteEngine On RewriteRule foo/(.*) /foo-$1 # here I tried [L], [PT], [C], etc. Re...
url-rewriting 问答列表
作者:Basj 提问时间:10/22/2021
有了这个:.htaccess RewriteEngine On RewriteRule foo/(.*) /foo-$1 # here I tried [L], [PT], [C], etc. Re...
作者:Bhavesh G 提问时间:10/14/2012
我有以下规则.htaccess Options +FollowSymLinks RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILEN...
作者:Amir 提问时间:2/11/2021
我使用下面的重写规则数组来重写 URL。 $rules = array( 'image' => "/image/(?'image'[\w\-]+)", // '/image/image-slug'...
作者:Fabrício Matté 提问时间:2/13/2013
我的目标是将用户从以下路径重定向: /foo/index.php /foo/ 自 /index 并从 加载原始内容。/index/foo/index.php 这在?.htaccess ...
作者:Pekka 提问时间:5/24/2017
我有一份 Concrete5 的副本,这是一个基于 PHP 的 CMS,运行在 .example.com Concrete5 附带了以下漂亮的 URL 的基本说明(将所有 URL 重定向到中央ind...
作者:smallbee 提问时间:3/14/2023
我只想要这个网址 example.com/?cat_page_10=2 添加到此 URL 中 example.com/cat-page/10/2.html 上面的 URL 有两个(双)可...
作者:Marco 提问时间:7/5/2023
我有一个规则。我需要找到点(或不点)之后的第一个整数。下面是一个很好的良好数据示例,这些数据匹配并找到第一个捕获组:.htacces discography/type discography/typ...
作者:Nour 提问时间:7/6/2023
我正在做一个项目,我正在尝试在我网站的根目录中进行 URL 重写。现在的情况如下.htaccess RewriteEngine On RewriteCond %{HTTPS} !=on Rewri...
作者:Kirill Zaytsev 提问时间:7/31/2023
当我发出“http://domain/index.php”或“http://domain”请求时,我希望服务器给我 404 代码。当我制作“http://domain/some-path/index....
作者:Adam 提问时间:9/26/2023
赫吉, 我正在尝试使用重写引擎为我的网站实现一个漂亮的网址。目标是这样的——mysite.dk/da、mysite.dk/da/success 和 mysite.dk/da#scroll。 到目前...