我想将example.com/foo重写为example.com/index.php?bar(PHP codeigniter)。
所有文件都在同一域中。
作为起点并证明设置,以下代码成功重定向:
RewriteCond %{HTTPS} on
RewriteRule ^foo/$ https://example.com/index.php?bar [L,QSA,NC]
但是我想重写而不重定向。我一直无法解决该怎么做。我已经为RewriteRule尝试了以下方法:
#These don't work
RewriteRule ^foo1/$ index.php?/bar [L,QSA,NC]
RewriteRule ^foo2/$ /index.php?/bar [L,QSA,NC]
RewriteRule ^foo3/$ index.php?/bar [L,QSA,NC,P]
RewriteRule ^foo4/$ /index.php?/bar [L,QSA,NC,P]
RewriteRule ^foo5/$ index.php?/bar [L,QSA,NC,PT]
RewriteRule ^foo6/$ /index.php?/bar [L,QSA,NC,PT]
RewriteRule ^foo7/$ https://example.com/index.php?/bar [L,QSA,NC,PT]
完整的.htaccess在这里:
<IfModule mod_rewrite.c>
Options +FollowSymLinks
RewriteEngine On
RewriteBase /
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
RewriteCond %{HTTPS} on
RewriteRule ^foo/$ https://example.com/index.php?/bar [L,QSA,NC] #works but redirects
RewriteRule ^foo1/$ index.php?/bar [L,QSA,NC]
RewriteRule ^foo2/$ /index.php?/bar [L,QSA,NC]
RewriteRule ^foo3/$ index.php?/bar [L,QSA,NC,P]
RewriteRule ^foo4/$ /index.php?/bar [L,QSA,NC,P]
RewriteRule ^foo5/$ index.php?/bar [L,QSA,NC,PT]
RewriteRule ^foo6/$ /index.php?/bar [L,QSA,NC,PT]
RewriteRule ^foo7/$ https://example.com/index.php?/bar [L,QSA,NC,PT]
</IfModule>
答案 0 :(得分:1)
您认为太复杂了。保持简单:
RewriteEngine On
RewriteCond %{HTTPS} !on
RewriteRule ^ https://example.com%{REQUEST_URI} [R=301,QSA]
RewriteRule ^/?foo/?$ /bar [END]
应该首先完成从http到http的重定向,而与内部重写无关。您需要将其分开。
此规则将同样在HTTP服务器主机配置或动态配置文件内(“htaccess的”文件)工作。显然,重写模块需要加载到http服务器内部并在http主机中启用。如果使用动态配置文件,则需要注意在主机配置中完全启用了它的解释,并且该解释位于主机的DOCUMENT_ROOT
文件夹中。
如果使用上述规则收到内部服务器错误(http状态500),则很可能是您运行了非常旧版本的apache http服务器。在这种情况下,您将在http服务器错误日志文件中看到对不支持的[END]
标志的明确提示。您可以尝试升级或使用旧的[L]
标志,在这种情况下它可能会起作用,尽管这在一定程度上取决于您的设置。
还有一个一般性说明:您应该始终喜欢将此类规则放置在http服务器主机配置中,而不要使用动态配置文件(“ .htaccess”)。这些动态配置文件增加了复杂性,通常是导致意外行为,难以调试的原因,并且确实降低了http服务器的速度。仅当您无法访问真正的http服务器主机配置(阅读:真正便宜的服务提供商)或坚持编写自己的规则的应用程序(这显然是安全的噩梦)时,才提供它们作为最后的选择。