将url替换为所需的自定义URL

时间:2014-09-15 09:51:07

标签: php .htaccess url url-rewriting

如何在.htaccess文件中更改我的网址?
示例我有一个网址:

  

www.mysite.com/folder1/index.php?category=cs

我希望它看起来像:

  

www.mysite.com/folder1/cs

请提出任何建议:)

1 个答案:

答案 0 :(得分:1)

试试这个:

<IfModule mod_rewrite.c>
RewriteEngine on

RewriteBase /folder1/

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)\/?$ index.php?category=$1 [QSA]
</IfModule>