1

我想在我的.htaccess

  • 我希望所有的 PHP 文件都可以通过访问来工作,/index而不必放在.php后面。

我用了:

RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^(.*)$ $1.php
  • 我有一个index.php页面,有时有 1 个 GET 参数,有时有 2 个:

    • www.domain.com/?first=data
    • www.domain.com/?first=data&second=data2

我用了:

RewriteRule ^(.*)/(.*)$ index.php?id=$1&p=$2
RewriteRule ^(.*)$  index.php?id=$1 [L]

但只有当我有两个元素时它才有效;如果我只使用第一个参数的链接,我会得到一个错误页面。

我该如何解决?

4

1 回答 1

0

希望能帮助到你:

Options +SymLinksIfOwnerMatch

RewriteEngine on

RewriteRule ^([a-zA-Z-]+)$ index.php?action=$1 [NC,L]

RewriteRule ^(member)-([0-9-]+)$ index.php?action=member&id=$2 [NC,L]

RewriteRule ^([a-zA-Z-]+)/([a-zA-Z-]+)-([0-9-]+)$ index.php?action=$1&saction=$2&sid=$3 [NC,L]

RewriteRule ^([a-zA-Z-]+)/([0-9-]+)$ index.php?action=$1&id=$2 [NC,L]

RewriteRule ^([0-9-]+)/([a-zA-Z0-9-]+)/([a-zA-Z0-9-]+)/([a-zA-Z0-9-]+)/(.*).html$ index.php?action=details&id=$1&p1=$2&p2=$3&p3=$4 [NC,L]
于 2013-01-18T10:07:56.103 回答