使用htaccess

时间:2019-02-24 09:55:58

标签: apache .htaccess

我正在逐步澄清我的问题,这有助于理解我要做什么。

我正在尝试使用htaccess构建URL Shotner,假设https://example.com/index.php/A43DS4,其中index.php是主文件,通过编写以下htaccess代码,该文件可能比https://example.com/index/A43DS4多余:

RewriteEngine On
# by writing the below rule: we can excess the index.php page with:http://example.com/url
# its convert index.php to url/image/invite
# its remove .php extention
RewriteRule ^url?$ index.php
RewriteRule ^image?$ index.php
RewriteRule ^invite?$ index.php


# by writing the below rule: we can excess the URL-CODE with:http://example.com/index/[URL-CODE]
# its convert index.php to index/
# its remove .php extention
# Accepts all alfa-numeric $_GET[link] 
RewriteRule ^index/([0-9a-zA-Z]+) index.php?link=$1

但是我想要的是而不是像这样写一行:

RewriteRule ^url?$ index.php
RewriteRule ^image?$ index.php
RewriteRule ^invite?$ index.php

我要

RewriteRule ^url|image|invite?$ index.php

与以下内容相同:

RewriteRule ^index/([0-9a-zA-Z]+) index.php?link=$1

收件人:

 RewriteRule ^index|url|image|invite/([0-9a-zA-Z]+) index.php?link=$1

但不幸的是^url|image|invite?$ index.php无法正常工作。我不擅长阿帕奇。如果有人提供某种指导并指出我的错误,那就太好了。

1 个答案:

答案 0 :(得分:1)

我认为这就是您要寻找的:

RewriteEngine on
RewriteRule ^/?index/(\w+)/?$ /index.php?link=$1 [END]
RewriteRule ^/?(?:url|image|invite)/?$ /index.php [END]

此规则将同样在HTTP服务器主机配置或动态配置文件内(“htaccess的”文件)工作。显然,重写模块需要加载到http服务器内部并在http主机中启用。如果使用动态配置文件,则需要注意在主机配置中完全启用了它的解释,并且该解释位于主机的DOCUMENT_ROOT文件夹中。

如果使用上述规则收到内部服务器错误(http状态500),则很可能是您运行了非常旧版本的apache http服务器。在这种情况下,您将在http服务器错误日志文件中看到对不支持的[END]标志的明确提示。您可以尝试升级或使用旧的[L]标志,在这种情况下它可能会起作用,尽管这在一定程度上取决于您的设置。

还有一个一般性说明:您应该始终喜欢将此类规则放置在http服务器主机配置中,而不要使用动态配置文件(“ .htaccess”)。这些动态配置文件增加了复杂性,通常是导致意外行为,难以调试的原因,并且确实降低了http服务器的速度。仅当您无法访问真正的http服务器主机配置(阅读:真正便宜的服务提供商)或坚持编写自己的规则的应用程序(这显然是安全的噩梦)时,才提供它们作为最后的选择。