我想更改我的网址:
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]
答案 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]