PDA

View Full Version : حرفه ای: تغییر url در صفحات داخلی



behzadamin12
دوشنبه 14 دی 1394, 09:58 صبح
با سلام
چطوری با htaccess میتونم url
http://localhost/test/main/2-ddd.html

به این url تبدیل کنم
http://localhost/test/main/ddd

yeganemehr
دوشنبه 14 دی 1394, 12:29 عصر
سلام


<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^/?test/main/2\-ddd\.html$ /test/main/2-ddd.html [L]
</IfModule>