如何在.htaccess文件中更改我的网址?
示例我有一个网址:
www.mysite.com/folder1/index.php?category=cs
我希望它看起来像:
www.mysite.com/folder1/cs
请提出任何建议:)
答案 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>