0

网址:http://domainname.com/index.php?p=top-games

我需要将其重写为http://domainname.com/top-games

我如何使用 htaccess 文件执行此操作?请任何人给我htaccess代码。

谢谢

4

2 回答 2

0

您可能正在寻找反向重定向。

将此代码放入您的DOCUMENT_ROOT/.htaccess文件中:

RewriteEngine On

# external redirect from actual URL to pretty one
RewriteCond %{THE_REQUEST} ^[A-Z]{3,}\s/+index\.php\?p=([^\s&]+) [NC]
RewriteRule ^ /%1? [R=302,L]

# internal forward from pretty URL to actual one
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+?)/?$ /index.php?q=$1 [L,QSA]
于 2013-11-01T14:16:03.640 回答
0

尝试这个:

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-f 
    RewriteRule ^(.*)$ index.php?p=$1 [QSA,L]
</IfModule

在根文件夹中创建 .htaccess 文件并粘贴代码

于 2013-11-01T07:00:34.463 回答