通过 htaccess 删除 url 中的中间名

Remove the middle name in url through htaccess

提问人:sajid javed 提问时间:11/16/2023 最后编辑:CBroesajid javed 更新时间:11/16/2023 访问量:14

问:

我的问题解决请任何机构 我的网站链接 http://localhost/website_tayyab/country/america

我删除了中间名“国家”

http://localhost/website_tayyab/america

和我的HTACCESS文件代码:

RewriteEngine On  
RewriteRule ^country/([a-zA-Z0-9-/]+)$ country.php?country_name=$1  
RewriteRule ^country/([a-zA-Z-0-9-]+)/ country.php?country_name=$1  

RewriteEngine On
RewriteCond %{QUERY_STRING} "^([^/]*?)(?:/|%20)+([^/]+?)/?$"
RewriteRule ^ %{REQUEST_URI}?%1-%2 [L,R=302,NE]

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^\.]+)$ $1.php [NC,L]
.htaccess url 友好网址

评论


答: 暂无答案