我的htaccess文件中有以下内容
RewriteRule ^([A-Za-z0-9-]+)$ /j/view.php?cat=$1 [L]
RewriteRule ^([A-Za-z0-9-]+)$ /j/display.php?name=$1 [L]
两者都重写以获取http://domain.com/some-file-name
的网址。按照它的方式,浏览器会解释当链接被点击时,行中的重写规则排在第一位,因为URL格式相同。
如何修复它以了解要正确解释和显示的URL仍然保持相同的URL结构。
目前,如果我移动上面的#2,它会开始解释#2,如果我允许,它会解释#1。我需要一些帮助。
答案 0 :(得分:1)
在你的一条评论中,你问过:
If I were to make URL become http://domain.com/some-file-name for "view.php" and http://domain.com/some-file-name---[id] for "display.php" where "[id]" will be the "group_id" number in the database, will it make a difference in their URL and cause it to rewrite well?
是的,这可以遵循以下规则:
# first try to see if belongs to /j/view.php based on URI pattern
RewriteRule ^([a-z0-9-]+)---([0-9]+)/?$ /j/view.php?cat=$1&id=$2 [L,NC,QSA]
# No try /j/display.php
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([a-z0-9-]+)/?$ /j/display.php?name=$1 [L,NC,QSA]
答案 1 :(得分:0)
如果网址之间没有任何差异,则无法在这两个网页之间不断分割请求。我建议更改网址,以便两个网页中的每一个都有自己的前缀。
RewriteRule ^c-([A-Za-z0-9-]+)$ /j/view.php?cat=$1 [L]
RewriteRule ^n-([A-Za-z0-9-]+)$ /j/display.php?name=$1 [L]
如果您不希望这样做,则必须创建一个路由器页面,智能地在两个页面之间拆分请求。你会有一个规则:
RewriteRule ^([A-Za-z0-9-]+)$ /j/router.php?page=$1 [L]
文件router.php
,其中包含以下代码。显然我不知道两者之间有什么区别。也许你可以将它与数据库或其他东西相匹配。
<?php
if( condition to check $_GET['page'] for view.php ) {
$_GET['cat'] = $_GET['page'];
include( '/j/view.php' );
} else {
$_GET['name'] = $_GET['page'];
include( '/j/display.php' );
}