我在尝试美化某些网址时遇到了一些问题。基本上,我需要设置此网址http://domain.com/actualfolder/fakepath/this-is-the-article.php以显示此页面中的内容http://domain.com/actualfolder/articlemanager.php。
articlemanager.php设置为以“this-is-the-article”的方式接收GET url变量,并在数据库中搜索它。如果找到,它将显示特定于该结果的内容。这部分有效。
我无法使其工作的部分是htaccess规则。
这是我的规则,但如果我不使用初始斜杠,则返回404未找到或500;
Options +FollowSymLinks
RewriteEngine On
RewriteRule ^fakepath/([^/.]+).php$ articlemanager.php?permalink=$1 [L]
我真的可以使用一些帮助,所以欢迎任何建议。
编辑:htaccess文件位于domain.com/actualfolder/ location