htaccess重写为sef url

时间:2015-10-30 15:54:56

标签: .htaccess url-rewriting

我想将我的网址从http://xyz.edu/profile.php?name=gavin重写为http://xyz.edu/gavin.html

示例代码:

RewriteRule ^profile\.php$ - [L] 
RewriteCond %{REQUEST_FILENAME} !-f 
RewriteCond %{REQUEST_FILENAME} !-d 
RewriteRule ^(.*)$ profile.php?compname=$1 [L]

1 个答案:

答案 0 :(得分:0)

嗯,这与你已经拥有的规则相同。试试这个,让我知道它是如何为你工作的。

RewriteEngine On
RewriteRule ^profile\.php$ - [L] 
RewriteCond %{REQUEST_FILENAME} !-f 
RewriteCond %{REQUEST_FILENAME} !-d 
RewriteRule ^(.+)\.html$ profile.php?compname=$1 [L]