当我更改链接时,它会显示一个错误页面。也许我的网站有问题你怎么看?我的网站中有网址:www.mywebsite.com/picture.php?1,我想将其更改为:www.mywebsite.com/picture/1
这是我的 .htaccess
RewriteEngine on
rewritecond %{http_host} ^website.com [nc]
rewriterule ^(.*)$ http://www.mywebsite.com/$1 [r=301,nc]
RewriteRule ^contact\/?$ contact.php [L]
RewriteRule ^terms\/?$ terms.php [L]
**RewriteRule ^picture/(.*)/$ picture.php?$1 [L]**
请帮忙,我不知道是什么问题。