我使用htaccess文件创建seo url。以下是我文件中的代码
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^article/([a-zA-Z0-9_-]+) article.php?article=$1 [NC,L]
我的文章网址为http://www.example.info/article/article_name。点击网址后,他们会将我重定向到http://www.example.info/home/user12/public_html/article.php?article=article_name。
我的所有文件都位于public_html文件夹中。我如何使用.htaccess处理我的搜索引擎优化。请帮我解决这个问题。谢谢