我正在寻找知道主代码的人
我有子页面与丑陋的名称www.forexample.eu/index_pl.php?src=home如何削减它为这个url www.forexample.eu/start
请告诉我怎么做?
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([^/]+)/([^/]+)/?$ index_pl.php?src=home=$1&subpage=$2 [L,QSA]
尝试如下:
RewriteEngine ON
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^start index_pl.php?src=home [L]
如果你的链接是www.forexample.eu/start
,它会在后面加载www.forexample.eu/index_pl.php?src=home
,但它仍然会显示第一个链接。