当我更改我的网址时,.htaccess文件无法正常工作

时间:2015-05-15 02:26:11

标签: .htaccess mod-rewrite

我想更改我的网址:

 www.domain.com/includes/edit.php?products=cloth 

为:

 www.domain.com/products/cloth

我现在正在使用此代码,但它无效:

 RewriteEngine On 
 RewriteRule ^products/([A-Za-z0-9-]+)/?$ edit.php?q=$1 [NC,L]

1 个答案:

答案 0 :(得分:1)

试试这个:

RewriteEngine On  
RewriteCond %{REQUEST_FILENAME} !-d [OR]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^products/([A-Za-z0-9-]+)/?$ /includes/edit.php?products=$1 [QSA,NC,L]