如何删除?p = $ page_name到我的网站的SEO友好网址?

时间:2017-01-15 05:34:42

标签: php .htaccess

我有一个如下网址:

http://localhost/tapromtour.com/image_detail?page=2&id=23&ti=save-visit

我希望有这样的输出

http://localhost/tapromtour.com/image_detail/2/23/save-visit.html

http://localhost/tapromtour.com/image_detail/2/23/save-visit

我只能用一个级别(index.php?p = page_name)来完成。我怎么能用我的.htaccess文件做到这一点。 这是我的.htaccess文件

RewriteEngine on
RewriteRule ^inc/.*$ index.php
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([\w-]+)$ index.php?p=$1 [QSA,L]


ErrorDocument 400 /.error.php
ErrorDocument 401 /.error.php
ErrorDocument 403 /.error.php
ErrorDocument 404 /.error.php
ErrorDocument 405 /.error.php
ErrorDocument 408 /.error.php
ErrorDocument 414 /.error.php
ErrorDocument 500 /.error.php
ErrorDocument 502 /.error.php
ErrorDocument 504 /.error.php

DirectoryIndex index.htm index.html index.shtml index.php default.php .index.php

0 个答案:

没有答案