我正在使用serendipity weblog并希望在apache htaccess文件中进行重写,当在浏览器中打开/ info时它会打开/index.php?/categories/1-Info。
我试过跟随rewriterule:
RewriteRule ^info index.php?/categories/2-Info [L]
它不起作用。当我将替换更改为其他内容(例如http://www.google.com)时,它确实会去那里,因此模式应该可以工作,但它并没有显示我想要看到的意外类别。当我手动输入时,地址确实有效。
我阅读了十几个带有指南的网页,并使用“http://martinmelin.se/rewrite-rule-tester/”来验证我的重写,但我仍然无法让它工作。不幸的是,我无法看到或设置任何记录。
我如何更改重写?
编辑:
我的.htaccess文件如下所示:
# BEGIN s9y
ErrorDocument 404 /data/script/index.php
DirectoryIndex /data/script/index.php
Options -MultiViews
RewriteEngine On
RewriteBase /data/script/
RewriteRule ^info index.php?/categories/2-Info [L]
<Files *.tpl.php>
deny from all
</Files>
<Files *.tpl>
deny from all
</Files>
<Files *.sql>
deny from all
</Files>
<Files *.inc.php>
deny from all
</Files>
<Files *.db>
deny from all
</Files>
# END s9y
答案 0 :(得分:5)
尝试通过添加R
标志强制外部重定向:
RewriteRule ^info index.php?/categories/2-Info [L,R]