我正在尝试为我的网站设置 SEO 友好的 URL,但似乎无法让它们正常工作。这是我的 htaccess 的代码:
Options +FollowSymLinks
RewriteEngine On
deny from all
allow from 46.763.65.235
RewriteCond %{HTTP_HOST} ^www\.mywebsite\.com
RewriteRule ^(.*)$ http://mywebsite.com/$1 [R=301,L]
RewriteRule ^(link1|link2|link3|link4)$ http://mywebsite.com/$1/ [R=301]
RewriteRule ^(link1|link2|link3|link4)/(.*)$ http://mywebsite.com/m_$1.php/$2 [L]
基本上当去http://mywebsite.com/link1它应该显示http://mywebsite.com/m_link1.php的内容
但是,现在发生的事情是我去http://mywebsite.com/link1它只是重定向到http://mywebsite.com/m_link1.php
谁能证明需要更换或添加什么床?