url changer htaccess config

时间:2017-12-23 22:49:18

标签: php .htaccess

我在这里遇到问题,有人知道如何更改我的网址

http://localhost/myProfile.php?id=1

http://localhost/myProfile/1

2 个答案:

答案 0 :(得分:1)

试试这个:

Options +FollowSymlinks
RewriteEngine on
AddDefaultCharset UTF-8 

RewriteCond %{REQUEST_URI} myProfile\.php
RewriteCond %{QUERY_STRING} ^id=([0-9]+)$ [NC]
RewriteRule ^(.*)$ /myProfile/%1 [NC,L]

注意:[0-9]+regex,用于接受0到9之间的数字。+表示可以有多个数字。regex。如果您希望[A-F0-9]{32}例如接受字母A-F,数字0-9并且总共可以包含32个字符,则可以使用其他RewriteRule。您可以调整它以满足您的需求。请注意,如果不符合条件,<bound method Entry.get of <tkinter.Entry object .!entry>> 将不会发生。

答案 1 :(得分:0)

试试这个

{{1}}